Blogger Information
Blog 17
fans 0
comment 0
visits 11999
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3-23
一片叶
Original
557 people have browsed it
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>对齐方式</title>
  <style>
.box{
/* 行内元素水平居中 */
text-align: center;
width: 300px;
height: 300px;
background: cadetblue;
/* 行内, 块级元素垂直居中2 */
display: table-cell;
vertical-align: middle;
}
.box2{
/* 块级元素水平居中 */
margin: auto ;
width: 100px;
height: 100px;
background: burlywood;
}
a{
/* 行内元素垂直居中1  */
line-height: 100px;
}
</style>
</head>
<body>
<!-- vertical-align:top,middle,bottom.使用范围仅限表格属性.对应的三个参数为顶,居中,底对齐方式. -->
<div class="box">
<div class="box2">
<a href="##">这里是</a>
</div>
</div>
</body>
</html>

2018-03-24_12-20-04.png

2018-03-24_13-22-29.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!