Answers for "border far from element css"

CSS
0

border far from element css

#content{
  width: 100px;
  min-height: 100px;
  margin: 20px auto;
  background:#000;
  position:relative;
}
#content:after {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -25px;
  border: red 3px solid;
}
Posted by: Guest on July-13-2021

Browse Popular Code Answers by Language