我的页面上有一个号召性用语按钮,我试图稍微向右移动,以便更好地与页面上它上方的文本/图像对齐。我尝试的一切要么将其移到其他元素后面,要么什么都不做。任何提示/技巧/解决方案都会很棒。下面列出了 CSS。谢谢。
.cta-button {
margin: 10px auto;
clear: both;
float: none !important;
padding-left:30px;
height: auto !important;
}
.cta-on-phone-alignment { text-align: center !important; clear: both !important; height: 70px; 0 0 0; vertical-align: baseline !important; }
img.hero {
clear: inherit !important;
margin: 0 auto !important;
text-align: center !important;
float: none !important;
}
按钮所在的 HTML。如果需要更多,请告诉我。我对 Web 设计有点陌生,其中很多内容仍然让我感到困惑。
<div class="row cta-on-phone-alignment">
<!-- Button links to bottom of page -->
<a href="#bottom" class="cta-button" style="text-align:center !important;">Contact Us</a> <!-- Call To Action Button -->
</div>