如何在div中制作CSS列?
我正在对 WordPress 模板进行原型设计,并尝试将相同的元素放置在 header
上,如下所示:http://dl.dropbox.com/u/768097/about.pdf
以下是 HTML 和 CSS 文件:http://acreedy.oliveandpickle.com/
我需要在 header
中包含 4 列,并且所有内容都应放置在图像下方。
I am prototyping a Wordpress template and I'm trying to place the same elements on the header
like this: http://dl.dropbox.com/u/768097/about.pdf
Here are the HTML and CSS files: http://acreedy.oliveandpickle.com/
I need 4 columns in the header
and everything should be placed under the images.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
HTML:
CSS:
HTML:
CSS:
向左浮动肯定会解决您的问题,但请记住,每当您向浮动元素添加填充或边距时,您也必须调整宽度。我查看了您的页面,但您没有补偿该更改。相应地修复宽度,您应该可以开始了:D
~ Chris
http://twitter.com/TheCSSGuru
Floating left will most certainly fix your issue, though keep in mind whenever you add padding or margin to your floated element that you will have to adjust your width as well. I checked out your page and you didn't compensate that change. Fix the width accordingly and you should be good to go :D
~ Chris
http://twitter.com/TheCSSGuru
如果您使用 html5,那么您可以使用side 或section 元素而不是div 的。
If you're using html5 then you could use aside or section elements instead of div's.