CSS Tutorial





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
CSS Topics
css tutorials Introduction
Types Types
Background Properties Background Properties
Text Properties Text Properties
Font Properties Font Properties
Box Properties BOX Properties
Border Properties Border Properties
Margin Properties Margin Properties
Padding Properties Padding Properties
Special Topics Special Topics
Forums Ask Your Doubts
Scraps More about CSS
Feedback Feedback
 




CSS Border color


Tutorials Css

Topic

How to set a color border around my text or word in html using style sheet?



Explanation

Property: Border color

Usage:
border-color: red;
border-color: #454545;
border-color: rgb(123,123,123);

Definition:
The border of any object can be set with any color using the tag/argument border-color. border-color will not take effect with out border style. Border style can be set using "border-style"
It takes the following values.
a)red : The border color can be set using text names of colors.
b)#454545 : The border color can be set using hexadecimal color code.
c)rgb(x,y,z) : The border color can be set rgb code.

Example 1:
<div style="border-width: 4px; border-style: solid; border-color: red; ">testing border color</div>

Result:

testing border color



Example 2:
<font style="border-width: 4px; border-style: solid; border-color: #454545;">testing border color</font>

Result:

testing border color


Example 3:
<div style="border-width: 4px; border-style: solid; border-color: rgb(125,125,125);">testing border color</div>

Result:

testing border color


Box properties Border color



A Note
CSS - Cascading Style Sheets can be used along with html tags as explained in this site. This simple CSS will help you to create much elegant and neat html web pages. This does not need any additional softwares or codings. All web browser are capable of handing CSS codes.

Note 2: If required you can using <span> instead of <div> tags. div tag will start and end on new lines. span will not exceed the tag area.
Other Links

web hosting