当前位置: 移动技术网 > IT编程>网页制作>CSS > 文章内容页广告浮于左上角的解决办法

文章内容页广告浮于左上角的解决办法

2017年12月12日  | 移动技术网IT编程  | 我要评论
这个是整页代码,你可以看着改了,也可以保存成html文件,完了试试看就知道了,主要用的css+div 上面的东西移到模板中,下面的东西也是一样~完了就行了~ <!do
这个是整页代码,你可以看着改了,也可以保存成html文件,完了试试看就知道了,主要用的css+div

上面的东西移到模板中,下面的东西也是一样~完了就行了~

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>文章内容页广告浮于左上角的解决办法</title>
<style type="text/css">
.container {
display:table;
width:500px;
background:#66ffcc;
}
.main {
display:table-row;
width:100%;
background:#669933;
}
.left {
float:left;
width:165px;
display:table-cell;
background:#663399;
}
.right {
background:#33ccff
display:table-cell;
}
</style>
</head>
<body>
<div class="container">
  <div class="main">
    <div class="left">广告部分。
 </div>
 <div class="right">
   文章内容部分<br />
   文章内容部分<br />
   文章内容部分<br />
   文章内容部分<br />
   文章内容部分文章内容部分文章内容部分<br />
   文章内容部分<br />
   文章内容部分<br />
   文章内容部分<br />
   文章内容部分<br />
   <br /> </div>
  </div>
</div>
</body>
</html>

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网