css两个紧挨着的css选择器修饰同一个元素
#status, .commands
{
height: 25px;
line-height:
25px;
}
.upload .commands
{
float:
right;
}
.hidden
{
display: none;
}
#status
{
float: left;
font-size: 12px;
}
#status.error
{
color:
Red;
width: 100%;
}
#status.info
{
color: #333;
width: 100%;
}
#status.success
{
color: green;
width:
100%;
}
刚刚发现,一个id选择器和一个class选择器紧挨着跟不紧挨着是有区别的,紧挨着的,是修饰同一个元素的,那些不紧挨的,是修饰某个元素下的子元素
<div style="position: relative; width: 305px; height: auto; overflow:
hidden; text-overflow: ellipsis;
white-space:
nowrap; -o-text-overflow: ellipsis;">
<div id="status" class="info">
</div>
</div>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。