span中设置margin生效

来源:互联网 发布:阿里云 深圳机房 速度 编辑:程序博客网 时间:2024/05/13 09:39

span默认是行属性,而div默认是块属性,把span强制设为块属性就可以了。

比如:

span{
margin-left:25px;
margin-top:200px;
}


改为
span{
margin-left:25px;
margin-top:200px;
display:block;
}

<script type="text/javascript"><!--google_ad_client = "pub-4717125974896180";/* 728x90, 创建于 09-7-17 */google_ad_slot = "3536088218";google_ad_width = 728;google_ad_height = 90;// --></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>