无法调整边框

时间:2017-08-26 17:25:25

标签: html css

我的css需要一些帮助。我无法调整绿色边框,我希望绿色边框更小。

.col_eight {
  position: relative;
  float: right;
  width: 29%;
  padding: -80px;
  margin-bottom: -80px;
  padding-bottom: 1px;
  border: 1px solid green;
}
<a href="quicklinks.php">
  <div class="col_eight down">
    <div class="hover panel">
      <div class="front">
        <div class="box11">
          <p style="font-size:150%; color: white;">Quick Links</p>
        </div>
      </div>
    </div>
  </div>
</a>

这是截图:

Green Border

2 个答案:

答案 0 :(得分:0)

尝试使用css中的border-width属性:

https://www.w3schools.com/cssref/pr_border-width.asp

答案 1 :(得分:0)

如果我理解正确,你想让“快速链接”按钮和边框之间的空间变小吗?如果是这种情况,你应该看看你的填充而不是边框​​。

尝试给div一个最大高度以将拉伸限制在底部。如果您不提供完整的HTML / CSS代码,我无法帮助您。