我在 chrome 里面调试, text-align 会被 user agent stylesheet 给去掉, 在匿名浏览页面也是这个情况, 但是在 firefox 里面 align 是可以的, 这个是为什么?
代码 text-align center 在 btn span 里面
body{
min-height: 100vh;
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
}
/* button */
.btn {
width: 100px;
height: 20px;
border: none;
position: relative;
background-color: aqua;
}
.btn::after, .btn::before, .btn span::after, .btn span::before {
transition: all 0.3s ease;
}
.btn span{
width: 100%;
height: 100%;
display: block;
text-align: center;
/* position: relative; */
}
.btn::after, .btn::before {
content: "";
/* bottom: 0; */
/* 修改这个就能影响生长方向 */
position: absolute;
top: 0;
right: 0;
background-color: white;
z-index: 2;
}
.btn span::after, .btn span::before {
content: "";
position: absolute;
/* top: 0; */
/* 修改这个就能影响生长方向 */
bottom: 0;
left: 0;
background-color: white;
z-index: 2;
}
.btn::after, .btn span::after {
width: 0%;
height: 2px;
}
.btn::before, .btn span::before{
width: 2px;
height: 0%;
}
.btn:hover::before, .btn span:hover::before{
height: 100%;
}
.btn:hover::after, .btn span:hover::after{
width: 100%;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- style file -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- button with a span in it -->
<button class="btn">
<span>Ori</span>
</button>
</body>
</html>
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.