繁体   English   中英

如何实现CSS效果(居中放置内容和填充)?

[英]How would I achieve this CSS effect (centering content and padding)?

在此处输入图片说明

我想知道如何实现这种效果。 首先,当前内容位于名为“ contentDiv”的div中。 我有以下所有内容float:div的权利。 我要实现的是一个假想的边界(看图片),其中内容不能交叉。 然后,我希望内容居中。 如何使用CSS来实现? 或者我可以使用哪些元素来复制这种效果。 我已经研究过将内容居中,并且此代码对我有用-

margin-left: auto;
margin-right: auto;
#contentDivParent {
    /*It will define the imaginary border*/
    padding-left:30%;
    width:70%;
}

#contentDiv {
  /*remove the float*/
  float:none;
  /*center*/
  margin:0px auto;
  /*force line-break*/
  max-width:100%;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM