校招刷题群
高效刷题 迎战校招
校招精选试题
近年面笔经面经群内分享
Java刷题群 前端刷题群 产品运营群
首页 > js语言和框架 > 水平、垂直居中
题目

请你说说设置水平居中,垂直居中,设置斑马线表格(纯css)

解答

水平居中

行内元素:父元素 text-align: center;

宽度固定: margin: 0 auto;

flex布局 justify-content: center

display: table-cell

垂直居中

单行文本 line-height 设置为 height 值

display: table-cell; + vertical-align: middle;

flex布局 align-items: center

absolute 定位 + transform: translateY(-50%, -50%)

斑马线表格

table{
width: 90%;
border-collapse: collapse; /*边框合并*/
}
tr.odd{
background-color: #f6f6f6;
}
tr{
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: gray;
height: 35px;
}
td{
width: 35%;
text-align: center;
}


C 0条回复 评论

帖子还没人回复快来抢沙发