Search
 
SCRIPT & CODE EXAMPLE
 

CSS

CSS Border Width

p.one {
  border-style: solid;
  border-width: 5px;
}

p.two {
  border-style: solid;
  border-width: medium;
}

p.three {
  border-style: dotted;
  border-width: 2px;
}

p.four {
  border-style: dotted;
  border-width: thick;
}
Comment

border width css

.element {
  border-width: 2px;
}
Comment

border width css

p {
  border-style: solid;
  border-color: red;
  border-width: 5px;
}
/* You can also write above code in one line   */
p {
  border: 5px solid red;
}
Comment

border-width

border: 3px solid #3d3d3d
/* top | right | bottom | left */
border-width: 0 0 3px 3px

/*simulair to: */
border-left:  3px solid #3d3d3d
border-bottom:  3px solid #3d3d3d
Comment

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) */
}
Comment

border-width in percentage

You can not set Border Width in the Percentage its the rule 
But you can able to do this just by wrapping into a new div 
and in most of the cases you did not need that
Comment

PREVIOUS NEXT
Code Example
Css :: cool css fonts 
Css :: tailblocks 
Css :: array_filter use keys 
Css :: css code examples 
Css :: show arrow on hover css 
Css :: what is descendant selector 
Css :: hr vertical en html 
Css :: how to make the select box font size small in css 
Css :: crop image with circle css 
Css :: scss npm import 
Css :: move scrollbar on element to right side 
Css :: progress bar bootstrap border 
Css :: CSS logo left and navigation right 
Css :: how to ignore an element from the flexbox container 
Css :: padding bottom and top css in same ligne 
Css :: terminal search file contents 
Css :: css stroke 
Css :: materializecss 
Css :: line icon css 
Css :: nav bar without display:flex 
Css :: how to combine two screen sizes in media queries css 
Css :: responsive table style 
Css :: css blur overlay 
Css :: increase Nth-child CSS 
Css :: css transparent background behind text 
Css :: scrollbar 
Css :: adding quotes css 
Css :: text-align attribute in css 
Css :: media query in scss 
Css :: position relative goes on top of position fixed 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =