引导程序-额外保证金

时间:2019-01-17 13:07:47

标签: css bootstrap-4

我使用引导程序。我有两个div。这是我的代码html:

<div class="container">
  <div class="col-12 circle lg-circle">
    <div class="col-12 circle sm-circle">
    </div>
  </div>
</div>

和CSS

.circle {
  border: solid 0.9px $athens-gray;
  border-radius: 50%;
}

.lg-circle {
  max-height: 69.375rem;
  max-width: 69.375rem;
  padding: 7.125rem;
}

.sm-circle {
  border-color: $athens-dark;
  max-height: 69.375rem;
  max-width: 55.0625rem;
}

,这是浏览器的视图。

问题:为什么有合适的边距,如何将其删除?

enter image description here

2 个答案:

答案 0 :(得分:0)

将此代码添加到css文件中:

if redis.call('HEXISTS', 'TEST', KEYS[1]) == 1
    then 
        redis.call('HSET', 'TEST', KEYS[1], ARGV[1])
        return 1
    end
return 0

答案 1 :(得分:0)

将此添加到您的

.container{
    margin:auto;
}
.col-12{
    margin:auto;
}