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

It is unknown whether the child elements centered horizontally in css are fixed width or width.

2025-01-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly explains the "css horizontal center child elements is a fixed width or width unknown", the article explains the content is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in-depth, together to study and learn "css horizontal center child elements is a fixed width or width unknown" it!

It is relatively easy to center horizontally, first of all, it is unknown whether the child element is of fixed width or width.

1, fixed width this way is absolute positioning center, in addition to using margin, you can also use transform.

(pay attention to browser compatibility, which is only applicable to ie9+, mobile development. Please ignore)

.container {width: 300px; height: 200px; background: pink; position: relative;} .inner {width: 100px; height: 50px; position: absolute; top: 50%; left: 50%; margin-top:-25px Margin-left:-50px; background: # fff; text-align: center;}

2. Unknown width sets the child element to the inline element, and then the parent element sets text-align: center.

.container {width: 300px; height: 200px; background: pink; position: relative; text-align: center;} .inner {display: inline-block } Thank you for your reading, the above is the content of "css horizontal center child elements are fixed width or unknown width". After the study of this article, I believe you have a deeper understanding of the question of whether the horizontal center child elements of css are fixed width or unknown width, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

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.

Share To

Development

Wechat

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

12
Report