css中div中的内容居中
程序员文章站
2022-03-02 15:33:37
...
第一种使用table标签(很少用)
css代码
/*
使用table包裹要居中的元素,因为table有自适应的设置
然后将table居中即可。
*/
table{
margin: 0px auto;
}
html中的代码
<div>
<table>
<tbody>
<tr>
<td>
<ul>
<li>这个内容是使用table自动居中的1</li>
<li>这个内容是使用table自动居中的2</li>
<li>这个内容是使用table自动居中的3</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
第二种、将div变成行级元素然后使用text-align:center来居中
css代码
.container{
background: gray;
/*
实现的方法就是将这个块级元素变成行级元素,然后将这个行级元素里面的内容居中
所以会显示的居中
*/
display: inline;
text-align: center;
}
html代码
<div class="container">
<div>这个是一个没有指定宽度的div,要让它自动居中</div>
</div>
第三种方式 、集合float、position、left来完成
css代码
/*
第三种居中方式就是将父类元素定义成position: relative;float: left;left: 50%;
子类元素定义的一样,只是将这里的left: -50%;
*/
.three{
position: relative;
float: left;
left: 50%;
background: pink;
}
.threeCenter{
position: relative;
float: left;
left: -50%;
background: green;
}
html代码
<div class="three">
<div class="threeCenter">这是第三种居中的方式</div>
</div>
css代码
.four{
position: relative;
background: yellow;
left: 50%;
top: 50%;
}
.fourChild{
position: absolute;
transform: translate(-50%, -50%);
}
html代码
<!-- 第四种方式-->
<div class="four">
<div class="fourChild">第四种方式居中方式..</div>
</div>
效果如下:
下一篇: Socket相关知识
推荐阅读
-
css中相对定位和绝对定位的介绍与使用
-
html中标签的种类_html/css_WEB-ITnose
-
将文件夹下的多个文件的内容合并到一个文件中
-
将PowerPoint中的每两页内容打印到一张A4纸上以节省纸张
-
CSS中简写属性要注意TRouBLe的顺序问题(避免踩坑)
-
PPT2010中对插入的图片进行自定义样式使其与内容更加和谐
-
Vue3中axios封装内容无法发送input框中输入内容的问题
-
学习淘宝网页中的代码_html/css_WEB-ITnose
-
请问在html中,如何调用xml文件里的内容?_html/css_WEB-ITnose
-
div中的onclick 提交表单_html/css_WEB-ITnose