0
Tell me how to change the color of the border. Background CSS
7 Antworten
+ 2
border: solid red;
+ 2
If you mean changing background color of element in which you add border, just change the background of that element
div {
boder : 3px solid brown;
background: grey ;
}
+ 2
/* CSS */
element{
border-color:red;
border-width:2px;
border-style:solid;
}
OR
element{
border:2px solid red;
}
Both will give the same result
If you want to change background color
/* CSS */
element{
background-color:red;
}
where element is an HTML element
+ 1
You asked how to change the color of the border.
Do you also wish to change the background color?
body {
background-color: red;
}
0
Not working it just change the color of border or outline of border
0
Please share your code if you're still stuck. Thanks
0
CSS3 > id/element/class{
Border: 2px solid grey;
}