1.如何让文字水平垂直居中?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>css练习</title> <style> a { /* 行内元素转行内块级元素,因为行内元素无法改变宽高,若想改变,必须先转成行内块级元素 */ display: inline-block; width: 70px; /* 行高等于高度,文字才会垂直居中 */ height: 30px; line-height: 30px; background-color: aqua; /* 去掉下划线 */ text-decoration: none; /* 设置水平居中 */ text-align: center; } /* 鼠标滑过效果 */ a:hover { color: #ff00ff; background-color: #fff; } </style> </head> <body> <a href="#">新闻</a> <a href="#">体育</a> <a href="#">新浪</a> </body> </html>
2.如何测试行高?
ps中有个切片工具