我有一些问题,中心对齐“阅读更多”按钮。如何将读取更多按钮居中对齐?
.moretag {
color: #404040 !important;
}
.moretag:hover {
color: #fa5742 !important;
}
答案 0 :(得分:1)
这应该这样做。您还应该发布代码而不是链接。
.moretag img {
display: block;
margin-left: auto;
margin-right: auto;
}
因为您正在使用图像作为按钮。您应该将图像裁剪得更靠近按钮,以便它可以真正居中。