CSS 文字装饰

文字装饰

text-decoration 属性用于设置或删除文本装饰。

text-decoration: none; 通常用于从链接上删除下划线:

ఇన్‌స్టాన్స్

a {
  text-decoration: none;
}

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

其他 text-decoration 值用于装饰文本:

ఇన్‌స్టాన్స్

h1 {
  text-decoration: overline;
}
h2 {
  text-decoration: line-through;
}
h3 {
  text-decoration: underline;
}

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

కోమ్మెంట్స్:లింకులు కాదు టెక్స్టులో అండర్లైన్ చేయకూడదు, ఎందుకంటే ఇది చాలాసారి పఠకులకు ఆశ్చర్యాన్ని కలిగిస్తుంది。