1.如何讓文字水平垂直居中?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>css練習(xí)</title>
<style>
a {
/* 行內(nèi)元素轉(zhuǎn)行內(nèi)塊級(jí)元素,因?yàn)樾袃?nèi)元素?zé)o法改變寬高,若想改變,必須先轉(zhuǎn)成行內(nèi)塊級(jí)元素 */
display: inline-block;
width: 70px;
/* 行高等于高度,文字才會(huì)垂直居中 */
height: 30px;
line-height: 30px;
background-color: aqua;
/* 去掉下劃線 */
text-decoration: none;
/* 設(shè)置水平居中 */
text-align: center;
}
/* 鼠標(biāo)滑過效果 */
a:hover {
color: #ff00ff;
background-color: #fff;
}
</style>
</head>
<body>
<a href="#">新聞</a>
<a href="#">體育</a>
<a href="#">新浪</a>
</body>
</html>
2.如何測(cè)試行高?
ps中有個(gè)切片工具
本文摘自 :https://blog.51cto.com/u