Bootstrap 4 box-sizing


Home > bootstrap4


Example
*,
*::before,
*::after {
  box-sizing: border-box;
}
Example
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
Example
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
Example
.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}
Powered by Githua.com