

  
   -
   
 .   
   

 CSS  
 .  
  
:

text-indent
text-align
text-decoration
letter-spacing
text-transform

 [text-indent]

 text-indent
  
   
    
 .
  30px  
   <p>:

p {
text-indent: 30px;
}

  [text-
align]

CSS- text-align 
 , 
   
 HTML.  
  
left, right, centred  justify.

   
   
<th>  ,  
   <td> -  
.
 ,  
 - justify:

th {
text-align: right;
}

td {
text-align: center;
}

p {
text-align: justify;
}



  [text-
decoration]

 text-decoration
  
 " 
". ,  

,    
    . .  
 <h1> , 
<h2> -   
,  <h3> -
.

h1 {
text-decoration: underline;
}

h2 {
text-decoration: overline;
}

h3 {
text-decoration: line-through;
}

   
[letter-spacing]

   
  
  
letter-spacing.  -
 .
,   
 3px  
   <p>  6
px -   <h1>, 
  :

h1 {
letter-spacing: 6px;
}

p {
letter-spacing: 3px;
}



  
[text-transform]

 text-transform
  
.   
capitalize, uppercase 
lowercase,    
,     
 HTML-.

,  "headline"
  
"HEADLINE"  "Headline". 
  
 text-transform:

capitalize:  
 . : 
"john doe"  "John Doe".
uppercase:   
   . 
: "john doe"  
"JOHN DOE".
lowercase:   
   . 
: "JOHN DOE"
 "john doe".
none:   -
   
,   HTML-.

    
 .   
   <li> (
list-item).  
 
    
  .

, HTML-   
   
   .

h1 {
text-transform: uppercase;
}

li {
text-transform: capitalize;
}

