css3實現0.5px邊框效果

antzone發表於2017-03-23

在預設情況下,邊框最細就是1px。

可能實際應用中,特別是在移動端感覺這還不夠細,下面介紹一下如何實現0.5px邊框。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
body {
  padding: 0;
  margin: 0;
}
ul, ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  text-decoration: none;
}
ul {
  margin: 50px;
}
li {
  height: 35px;
  line-height: 35px;
  position: relative;
  width: 200px;
}
li a {
  font-size: 16px;
  color: black;
  display: block;
  width: 100%;
  border-bottom: 1px solid red;
}
li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 100%;
  border-bottom: 1px solid red;
  -webkit-transform-origin: left bottom;
  transform: scaleY(0.5);
  -webkit-transform: scaleY(0.5);
}
</style>
</head>
<body>
  <ul>
    <li><a href="#">螞蟻部落一</a></li>
    <li><a href="#">螞蟻部落二</a></li>
    <li><a href="#">螞蟻部落三</a></li>
    <li><a href="#">螞蟻部落四</a></li>
  </ul>
</body>
</html>

相關文章