我在这里做错了什么?
我有一个.social
div
,但在第一个我想要在顶部填充零,而在第二个我想要没有底部边框。
我试图为此创建第一个和最后一个类,但我认为我在某个地方出错:
.social {
width: 330px;
height: 75px;
float: right;
text-align: left;
padding: 10px 0;
border-bottom: dotted 1px #6d6d6d;
}
.social .first{padding-top:0;}
.social .last{border:0;}
和HTML
<div class="social" class="first">
<div class="socialIcon"><img src="images/facebook.png" alt="Facebook" /></div>
<div class="socialText">Find me on Facebook</div>
</div>
我猜不可能有两个不同的课程?如果是这样我怎么能这样做?
答案 0 :(得分:405)
如果你想在一个元素上使用两个类,可以这样做:
<div class="social first"></div>
像css一样在css中引用它:
.social.first {}
示例:
答案 1 :(得分:21)
你可以试试这个:
<强> HTML 强>
<div class="social">
<div class="socialIcon"><img src="images/facebook.png" alt="Facebook" /></div>
<div class="socialText">Find me on Facebook</div>
</div>
CSS CODE
.social {
width:330px;
height:75px;
float:right;
text-align:left;
padding:10px 0;
border-bottom:dotted 1px #6d6d6d;
}
.social .socialIcon{
padding-top:0;
}
.social .socialText{
border:0;
}
要在同一元素中添加多个类,可以使用以下格式:
<div class="class1 class2 class3"></div>
<强> DEMO 强>
答案 2 :(得分:8)
如果您只有两个项目,则可以执行此操作:
.social {
width: 330px;
height: 75px;
float: right;
text-align: left;
padding: 10px 0;
border: none;
}
.social:first-child {
padding-top:0;
border-bottom: dotted 1px #6d6d6d;
}
答案 3 :(得分:7)
请记住,您可以通过将每个类与其class属性中的空格分隔,将多个类应用于元素。例如:
<img class="class1 class2">
答案 4 :(得分:6)
如果您只想将样式应用于父母的第一个孩子的元素,那么使用:first-child
伪类
.social:first-child{
border-bottom: dotted 1px #6d6d6d;
padding-top: 0;
}
.social{
border: 0;
width: 330px;
height: 75px;
float: right;
text-align: left;
padding: 10px 0;
}
然后,规则.social
包含常见样式和最后一个元素的样式。
.social:first-child
用第一个元素的样式覆盖它们。
您也可以使用:last-child
选择器,但旧浏览器更支持:first-child
:请参阅
https://developer.mozilla.org/en-US/docs/CSS/:first-child#Browser_compatibility和https://developer.mozilla.org/es/docs/CSS/:last-child#Browser_compatibility。
答案 5 :(得分:6)
我知道这篇文章已经过时了,但这就是他们所要求的。 在你的样式表中:
.social {
width: 330px;
height: 75px;
float: right;
text-align: left;
padding: 10px 0;
border-bottom: dotted 1px #6d6d6d;
}
[class~="first"] {
padding-top:0;
}
[class~="last"] {
border:0;
}
但是使用选择器可能是一种糟糕的方式。此外,如果您需要多个“第一”扩展程序,则必须确保设置不同的名称,或者优化您的选择器。
[class="social first"] {...}
我希望这会对某人有所帮助,在某些情况下它会非常方便。
例如,如果你有一小块css必须链接到许多不同的组件,并且你不想写一百次相同的代码。
div.myClass1 {font-weight:bold;}
div.myClass2 {font-style:italic;}
...
div.myClassN {text-shadow:silver 1px 1px 1px;}
div.myClass1.red {color:red;}
div.myClass2.red {color:red;}
...
div.myClassN.red {color:red;}
变为:
div.myClass1 {font-weight:bold;}
div.myClass2 {font-style:italic;}
...
div.myClassN {text-shadow:silver 1px 1px 1px;}
[class~=red] {color:red;}
答案 6 :(得分:5)
如果您有2个类,即.indent
和.font
,则class="indent font"
有效。
你不必在css中拥有.indent.font{}
。
您可以在css中将这些类分开,并且仍然只使用html中的class="class1 class2"
来调用它们。您只需要一个或多个类名之间的空格。
答案 7 :(得分:4)
另一种选择是使用Descendant selectors
HTML:
<div class="social">
<p class="first">burrito</p>
<p class="last">chimichanga</p>
</div>
在CSS中引用第一个:.social .first { color: blue; }
参考CSS中的最后一个:.social .last { color: green; }
Jsfiddle:https://jsfiddle.net/covbtpaq/153/
答案 8 :(得分:2)
您可以使用:focus
伪选择器代替使用多个CSS类来解决您的基本问题:
input[type="text"] {
border: 1px solid grey;
width: 40%;
height: 30px;
border-radius: 0;
}
input[type="text"]:focus {
border: 1px solid #5acdff;
}