我是CSS的新手,在调用我的垃圾邮件标签时必须修改我的范围选择器以实现以下功能:
现在我有这个,但它看起来似乎正在工作
.test1 {
font-family: Tahoma;
font-size: 24px;
font-weight: Underlined, Bold;
}
答案 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-weight
和text-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; }