Adjustments on changelog.md (#20625)

some adjustments on changelog.md that was mistaken
This commit is contained in:
Juan Saint Clair
2018-12-21 22:19:03 -02:00
committed by Fabio Trilho Pereira
parent 5b33fd563e
commit cdc8ea03cd

View File

@ -8,11 +8,11 @@ Várias propriedades são fornecidas pelo CSS para alterar a aparência do texto
#### Cor do texto #### Cor do texto
\`\` \`html ```
Este é um exemplo de propriedade de texto CSS. Este é um exemplo de propriedade de texto CSS.
``` ```
``` css
```
p { p {
color:red; color:red;
} }
@ -22,45 +22,51 @@ No exemplo acima, a `color` do texto do elemento `<p>` é alterada para vermelho
#### Alinhamento de texto #### Alinhamento de texto
`text-align` propriedade `text-align` é usada para definir o alinhamento horizontal do texto. Pode levar valores à `left` , à `right` , ao `center` e `justify` . \`\` \`css p { texto-alinhar: centro; } `text-align` propriedade `text-align` é usada para definir o alinhamento horizontal do texto. Pode levar valores à `left` , à `right` , ao `center` e `justify` .
```
css p { texto-alinhar: centro; }
``` ```
Here the text is aligned to the `center` ([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-align)).When `text-align` is set to `justify`,each line is stretched so that every line has equal width, and the left and right margins are straight ([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-align_all)). Here the text is aligned to the `center` ([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-align)).When `text-align` is set to `justify`,each line is stretched so that every line has equal width, and the left and right margins are straight ([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-align_all)).
#### Text Decoration #### Text Decoration
``` ```
css p { text-decoration: sublinhado; } css p { text-decoration: sublinhado; }
``` ```
The `text-decoration` property is used to set or remove decorations from text. The value `text-decoration: none;` is often used to remove underlines from links. Other `text-decorations` include `overline`,`line-through`,and `underline` ([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-decoration)). The `text-decoration` property is used to set or remove decorations from text. The value `text-decoration: none;` is often used to remove underlines from links. Other `text-decorations` include `overline`,`line-through`,and `underline` ([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-decoration)).
#### Text Tranformation #### Text Tranformation
``` ```
css p { text-transform: capitalize; } css p { text-transform: capitalize; }
``` ```
The `text-transform` property is used to convert the entire text to `uppercase`,`lowercase` or to `capitilize` each word([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-transform)). The `text-transform` property is used to convert the entire text to `uppercase`,`lowercase` or to `capitilize` each word([example](https://www.w3schools.com/css/tryit.asp?filename=trycss_text-transform)).
#### Letter Spacing #### Letter Spacing
The `letter-spacing` property sets the space between characters in a text. The `letter-spacing` property sets the space between characters in a text.
``` ```
css p { espaçamento entre letras: 5px; } css p { espaçamento entre letras: 5px; }
``` ```
#### Line Height #### Line Height
The `line-height` property sets the space between two lines of text. The `line-height` property sets the space between two lines of text.
``` ```
css p { Altura da linha: 5 px; } css p { Altura da linha: 5 px; }
``` ```
#### Word Spacing #### Word Spacing
The `word-spacing` sets the space between words in a text. The `word-spacing` sets the space between words in a text.
```
css p { espaçamento entre palavras: 5px; }
``` ```
css p { espaçamento entre palavras: 5px; } \`\` \`
#### Mais Informações: #### Mais Informações:
[Texto CSS do W3Schools](https://w3schools.com/css/css_text.asp) [Texto CSS do W3Schools](https://w3schools.com/css/css_text.asp)