Answers for "how to change size of border css"

CSS
6

border width css

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

border width css

#some-div {
  /* [WIDTH] [FILL MODE] [COLOR] */
  border: 5px solid #f00; 
  
  /* draws solid a red line of 5px
  between the padding (inside the div)
  and the margin (outside the div) */
}
Posted by: Guest on January-25-2021

Code answers related to "how to change size of border css"

Browse Popular Code Answers by Language