Css-content
分享
举报
相关内容
垂直对齐CSS:before和:after的内容
我正努力将链接与图像居中,但似乎无法以任何方式垂直移动内容。<h4>More Information</h4>
<a href="#" class="pdf">File Name</a>该图标是22 x 22px的。.pdf {
font-size: 12px;
}
.pdf:before {
padding:0 5px 0 0;
content: url(../img/icon/pdf_small.png);
}
.pdf:after {
content: " ( .pdf )";
font-size: 10px;
}
.pdf:hover:after {
color: #000;
}
2024-05-01 16:15:12