"."/> ".">
Home > Article > Web Front-end > How to set border color in html
In HTML, you can use the style attribute to add a border-color inline style to the label element to set the border color. The syntax is "
".
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
In HTML, you can use the style attribute to add the border-color inline style to the label element to set the border color.
For example:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p style="height: 50px;border-style: solid;"></p> </body> </html>
You only need to add the border-color inline style to set the border color:
<p style="height: 50px;border-style: solid;border-color: red;"></p>
Recommended tutorial: "html video tutorial"
The above is the detailed content of How to set border color in html. For more information, please follow other related articles on the PHP Chinese website!