怎样在和讯博客中使文章文字半环绕google广告

来源:百度知道 编辑:UC知道 时间:2024/07/02 02:27:02
请教:
怎样在和讯博客中使文章中的文字半环绕google广告?我是个初学者,请告诉详细步骤好吗?(要求把googl广告设置在文章中的左上角,并使文字半环绕广告)
谢谢

实现GG广告文字环绕

演示不就放出来了

模板部分:
<div id="new">
<div id="zhan">占位用的空白块</div>
<div id="ad">放广告代码</div>
{dede 内容标签}
</div>

CSS部分:
#zhan{
float: left; /让块靠左
clear: left; /让块的左边不能有其它块
height: 200px; /用这个来控制广告在内容里的位置
width: 1px; /
}
#ad{
height: 250px;
width: 250px;
float: left; /让块靠左
clear: left; /让块的左边不能有其它块
margin: 15px 15px 15px 0px;
}
#new img,#new table{
clear: left; /让内容里的图片和表格不会遮挡广告
}
#new{
float: left;
}