帝国cms环绕广告的实现方法.

[ 帝国cms教程   // 2014-03-15  ]
66

建网站往往会在文章内容中放广告以达到盈利的目的,其中环绕广告的实现方法最吸引人,下面就由爱绿软分享一下用CSS来实现环绕广告的方法.

模板部分:

占位用的空白块放广告代码[!--newstext--]内容标签

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;}