Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the central layout of DIV module without float

2025-02-22 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail how to achieve DIV module centered layout without float. The quality of the article is high, so Xiaobian shares it with you for reference. I hope you have a certain understanding of relevant knowledge after reading this article.

Div module centered layout without float

The most common DIV+CSS page layout form: top, middle left, middle right, bottom four modules, width 760px, the overall page center.

Structure code, topleftrightfoot four modules are all independent, not nested.

ExampleSourceCode

head

left
right
foot

The top is a general definition.

#top{height:100px;background:#ccc;width:760px;margin:auto; text-align:center;}

Method A:

The outer left is defined to be 760px wide and centered; the inner left_module is defined to be the actual left width of 280px and absolutely positioned, and the top value is equal to the height defined at the top.

The advantage of this approach is that the leftright two module code fragments can be interchanged to adjust display priority.

#left{width:760px;margin:auto;} #left_module{width:280px;position:absolute;top:100px;padding:10px;}

Method B:

The outer left is defined as 760px wide and centered, floating relative to top; the inner left_module is defined as the actual left width of 280px, and absolutely positioned.

The advantage of this method is that the height of the top can be freely extended.

#left{width:760px;margin:auto;position:relative;} #left_module{width:280px;position:absolute;padding:10px;}

The outer right is defined to be 760px wide and centered, and the inner right_module is defined to be 440px wide on the actual right, left, using margin syntax. The background color defined by right_module is the background color of the actual right side, and the height defined is the height of the actual middle module; the background color of right is the background color of the actual left side.

#right{width:760px;margin:auto;background:#E8E8E8;} #right_module{width:440px;background:#F0F0F0; height:360px;margin:000auto;padding:10px;}

The bottom is also a conventional definition.

#foot{height:100px;background:#ccc; width:760px;margin:auto;text-align:center;}

Test environment IE6.0 and FF1.5, are the most vulgar syntax, very simple, practical limited, can do technical reference.

About how to achieve DIV module centered layout without float to share here, I hope the above content can be of some help to everyone, you can learn more knowledge. If you think the article is good, you can share it so that more people can see it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Tag Search: Module actual layout width method background height no inner layer outer layer top code content right side benefits that is general article more knowledge vpn macOS Linux MariaDB MySQL Docker Shulou Information Shulou Technology Shulou Tech Info OPPO Reno Redmi Xiaomi NVidia Microsoft Huawei Apple NVidia Huawei macOS MariaDB Xiaomi Apple Microsoft Docker Shulou Information OPPO Reno Linux Shulou Technology vpn Redmi Shulou Tech Info MySQL NVidia Huawei macOS MariaDB Xiaomi Apple Microsoft Docker Shulou Information OPPO Reno Linux Shulou Technology vpn Redmi Shulou Tech Info MySQL

Share To

WeiboWeibo TencentTencent RenrenRenren QQZoneQQZone DoubanDouban MoreMore
WeiboWeibo TencentTencent RenrenRenren QQZoneQQZone DoubanDouban YixinYixin

Related

Development

More Development >

Latest Network Security More Network Security >

Latest Internet Technology More Internet Technology >

Latest Development More Development >

Latest Database More Database >

Latest Servers More Servers >

Latest Mobile Phone More Mobile Phone >

Latest Android Software More Android Software >

Latest Apple Software More Apple Software >

Latest Computer Software News More Computer Software News >

Latest IT Information More IT Information >

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report