作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
也许这是一个有点愚蠢的问题,但如果我有一个居中的网站(使用固定宽度 + 边距:0 auto),我该如何“附加”一个广告元素呢? (左摩天大楼)。
我所做的,但不喜欢的是,现在我有一个包装器,里面有内容和广告。但是包装器的宽度必须大于内容(页面)。因此,该网站不再居中,并且在不显示广告时(使用 adblock 之类的东西时)看起来真的很难看。
JS是唯一的方法吗?
最佳答案
不知道您所说的“附加”是什么意思,但下面是我将如何构建/构建它。
<div id="container">
<div class="column_left">I don't know what your using for ads, but you could place right here. Image, text, ad script?</div>
<!-- just place your ad in the above div -->
<div class="column_right">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div>
</div>
CSS:
#container {
overflow: hidden;
margin: 0 auto;
width: 960px;
position: relative;
}
.column_left {
width: 200px;
float: left;
margin: 0 10px 0 0;
background-color: #f7f7f7;
border: 1px solid #f5f5f5;
}
.column_right {
width: 700px;
float: left;
background: #ddd;
}
关于javascript - 如何将 "attach"广告元素置于居中网站?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29908839/
我是一名优秀的程序员,十分优秀!