Search
 
SCRIPT & CODE EXAMPLE
 

CSS

border color css

border: 1px solid #000000;
Comment

border color css

border: 1px;
border-color: #3581fc;
Comment

CSS Border Color

p.one {
  border-style: solid;
  border-color: red;
}

p.two {
  border-style: solid;
  border-color: green;
}

p.three {
  border-style: dotted;
  border-color: blue;
}
Comment

border color 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

PREVIOUS NEXT
Code Example
Css :: max z-index value css 
Css :: border-box css 
Css :: css scrollbar always visible 
Css :: orientation css max and min width media query 
Css :: blink css 
Css :: td wrap text without space 
Css :: html how to indent text 
Css :: input rtl html 
Css :: reset list html css 
Css :: compass font awesome 
Css :: move to last commit 
Css :: vertical hr 
Css :: make a circle in css 
Css :: css grid span columns 
Css :: how to add background in css 
Css :: background image overlay 
Css :: css filter color 
Css :: css flex divide evenly 
Css :: grid-template-areas css 
Css :: text flow top to bottom 
Css :: call circle icon in html css 
Css :: Resetting Default Table Styles 
Css :: css hide scrollbar 
Css :: css flex wrap space between rows 
Css :: css selector attribute contain 
Css :: list decoration none 
Css :: uninstall tinyproxy ubuntu 
Css :: what are types of positioning in css 
Css :: scss exceeded maximum budget. Budget 7.00 kB was not met by 841 bytes with a total of 7.82 kB. 
Css :: css triangle 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =