英文:
How to add padding outside of a btn in css?
问题
<li>
<a class="btn btn-primary py-2 px-2 d-inline-block theme_button" href="">点击我</a>
</li>
这段代码中的按钮与 div 接触在一起,我尝试添加 padding: 10px;,但它仍然与 div 接触。
英文:
<li>
<a class="btn btn-primary py-2 px-2 d-inline-block theme_button" href="">Click me</a>
</li>
I have this code and this button is touching the div
, I have tried putting padding: 10px;
but it still touches the div
.
答案1
得分: 1
我不能百分之百确定,除非看到您编写的更多代码细节,但如果没有其他样式影响您的布局,将填充改为外边距应该可以解决问题。
英文:
I can't be 100% sure without seeing more details on the code you've written, but if there isn't other styling affecting your layout, changing padding to margin should do the trick.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论