为什么以下CSS代码无法使用这些div?当我打开网站时,它们似乎根本不出现,尽管我的HTML文件上的外部CSS文件中的其他内容都在div中工作...
任何帮助将不胜感激, 谢谢!
CSS:
.leftAd
{
width: 200px;
height: 300px;
padding: 5px;
border: 3px solid black;
text-align: center;
margin-left: 4%;
margin-right: 15%;
border-radius: 10px;
background-color: white;
}
.rightAd
{
width: 200px;
height: 300px;
padding: 5px;
border: 3px solid black;
text-align: center;
margin-right: 4%;
border-radius: 10px;
background-color: white;
}
.rightAlign
{
float: right;
}
CSS续:
.leftAlign
{
float: left;
}
.text
{
font-family: text;
font-size: 25px;
color: white;
}
HTML
<div class="leftAd leftAlign text"></div>
<iframe width="420" height="315" src="https://www.youtube.com/embed/C0DPdy98e4c" frameborder="0" allowfullscreen></iframe>
<div class="rightAd rightAlign text"></div>
答案 0 :(得分:5)
您正在使用广告拦截浏览器插件。它们通常会阻止您正在使用的类。