Answers for "thickness border css with border style"

CSS
6

border width css

.element {
  border-width: 2px;
}
Posted by: Guest on July-23-2020
0

how to change border height in css

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

li {
  padding: 10px;
}

.custom-border {
  position: relative;
}

.custom-border:after {
  content: " ";
  position: absolute;
  border-left: 1px #6c757d solid;
  top: 35%;
  right: 0;
  height: 30%;
  margin-top: auto;
  margin-bottom: auto;
}
Posted by: Guest on November-27-2021

Browse Popular Code Answers by Language