使用CSS span选择器进行编辑

时间:2018-06-12 12:00:42

标签: css

我是CSS的新手,在调用我的垃圾邮件标签时必须修改我的范围选择器以实现以下功能:

  • 24点不像素字体
  • 下划线
  • 粗体
  • Tahoma字体系列

现在我有这个,但它看起来似乎正在工作

.test1 {
  font-family: Tahoma; 
  font-size: 24px;
  font-weight: Underlined, Bold; 
} 

5 个答案:

答案 0 :(得分:1)

您需要拆分粗体和下划线:

.test1 {
  font-family: Tahoma; 
  font-size: 24px;
  font-weight: bold; /* this is font weight */
  text-decoration: underline; /* this is underline */
}
<span class="test1">hello world</span>

答案 1 :(得分:1)

试试这个

.test1 {
  font-family: Tahoma; 
  font-size: 24pt;
  text-decoration: underline; 
  font-weight: bold;
} 

24pt如果你想要点数,如果不是24像素,如果你想要像素

答案 2 :(得分:1)

将您<span>的所有test1作为此类<span class="test1">Content</span> <span class="test1">Other content<span>

test1

text-decoration CSS类中,添加.test1 { font-family: Tahoma; font-size: 24px; font-weight: bold; text-decoration: underline; } 属性作为下划线,如下:

@

在此处查找所有CSS属性:https://www.w3schools.com/cssref/

答案 3 :(得分:0)

粗体和下划线可以通过两种不同的风格来实现:font-weighttext-decoration

 
.test1 {
  font-family: Tahoma; 
  font-size: 24px;
  font-weight: bold; 
  text-decoration: underline;
}
<span class="test1">
test
</span>

答案 4 :(得分:0)

你好,你不能在同一行有两个属性!!下划线和粗体是元素的两个不同属性!! 试试这个 !!

.test1 { font-family: Tahoma; font-size: 24pt; text-decoration: underline; font-weight: bold; }