CSS possui muitas propriedades para formatação de texto.
This text is styled with some of the text formatting properties. The heading uses the text-align, text-transform, and color properties. The paragraph is indented, aligned, and the space between characters is specified. The underline is removed from this colored "Try it Yourself" link.
Experimente você mesmo →
<!DOCTYPE html>
<html>
<head>
<style>
div {
border: 1px solid gray;
padding: 8px;
}
h1 {
text-align: center;
text-transform: uppercase;
color: #4CAF50;
}
p {
text-indent: 50px;
text-align: justify;
letter-spacing: 3px;
}
a {
text-decoration: none;
color: #008CBA;
}
</style>
</head>
<body>
<div>
<h1>text formatting</h1>
<p>This text is styled with some of the text formatting properties. The heading uses the text-align, text-transform, and color properties.
The paragraph is indented, aligned, and the space between characters is specified. The underline is removed from this colored
<a target="_blank" href="tryit.asp?filename=trycss_text">"Try it Yourself"</a> link.</p>
</div>
</body>
</html>
A propriedade color
é usada para definir a cor do texto. A cor é especificada por:
um nome de cor - como "vermelho
"
um valor HEX - como "#ff0000"
um valor RGB - como "rgb(255,0,0)"
Consulte Valores de cores CSS para obter uma lista completa de valores de cores possíveis.
A cor de texto padrão de uma página é definida no seletor de corpo.
body {
color: blue;
}
h1 {
color: green;
}
Experimente você mesmo →
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: blue;
}
h1 {
color: green;
}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<p>This is an ordinary paragraph. Notice that this text is blue. The default text color for a page is defined in the body selector.</p>
<p>Another paragraph.</p>
</body>
</html>
Neste exemplo, definimos a propriedade background-color
e a propriedade color
:
body {
background-color: lightgrey;
color: blue;
}
h1 {
background-color: black;
color: white;
}
div {
background-color: blue;
color: white;
}
Experimente você mesmo →
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightgrey;
color: blue;
}
h1 {
background-color: black;
color: white;
}
div {
background-color: blue;
color: white;
}
</style>
</head>
<body>
<h1>This is a Heading</h1>
<p>This page has a grey background color and a blue text.</p>
<div>This is a div.</div>
</body>
</html>
Importante: O alto contraste é muito importante para pessoas com problemas de visão. Portanto, certifique-se sempre de que o contraste entre a cor do texto e a cor de fundo (ou imagem de fundo) é bom!
Especifica a cor do texto