如何在CSS中为按钮添加外部填充?

huangapple go评论57阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年5月22日 10:01:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/76302658.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定