సిఎస్ఎస్ టెక్స్ట్

TEXT FORMATTING

టెక్స్ట్ ఫార్మాటింగ్

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.

ఈ టెక్స్ట్ కొన్ని టెక్స్ట్ ఫార్మాటింగ్ అనునాసికలను వినియోగించి స్టైల్‌ని నిర్వహిస్తుంది. హెడింగ్‌లు text-align, text-transform మరియు color అనునాసికలను వినియోగిస్తాయి. పారాగ్రాఫ్‌లు ఇండెంట్‌గా ఉంటాయి, జాయింట్‌గా ఉంటాయి మరియు అక్షరాల మధ్య అంతరాన్ని నిర్వహించబడుతుంది. ఈ రంగులో అండర్‌లైన్ తొలగించబడింది:“స్వయంగా ప్రయత్నించండి”లింక్‌లో అండర్‌లైన్ తొలగించబడింది.

స్వయంగా ప్రయత్నించండి

టెక్స్ట్ రంగు

color టెక్స్ట్ రంగును నిర్వహించడానికి వినియోగించే అనునాసికం. రంగు ఈ విలువల ద్వారా నిర్వహించబడుతుంది:

  • రంగు పేరు - ఉదా "red"
  • హెక్సడ్ విలువ - ఉదా "#ff0000"
  • RGB 值 - 比如 "rgb(255,0,0)"

查看 CSS కలర్ విలువలు,以获取可能颜色值的完整列表。

页面的默认文本颜色是在 body 选择器中定义的。

ఇన్స్టాన్స్

body {
  color: blue;
}
h1 {
  color: green;
}

స్వయంగా ప్రయత్నించండి

提示:对于 W3C compliant CSS:如果您定义了 color 属性,则还必须定义 background-color 属性。

文本颜色和背景色

在本例中,我们定义了 background-color అట్రిబ్యూట్ మరియు color అట్రిబ్యూట్:

ఇన్స్టాన్స్

body {
  background-color: lightgrey;
  color: blue;
}
h1 {
  background-color: black;
  color: white;
}

స్వయంగా ప్రయత్నించండి