H I O X INDIA
FREE CSS Tutorial
 HOME  ||  Scripts  ||  Purchase  ||  Tutorials  ||  Images  ||  Tools  ||  Templates 
  :-)  Send Page   :-)   Feedback   :-)   Register   :-)   Links   :-)   Support   :-)
Español Français 中文 Deutsch Portuguese Japanese தமிழ்
 Forums   Hosting   Internet Stats   Easy Calculation   FUN Games 

CSS Topics
Introduction
Types
Background Properties
Text Properties
Font Properties
BOX Properties
Border Properties
Margin Properties
Padding Properties
Special Topics
Ask Your Doubts
More about CSS
Feedback





CSS Border color


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







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.


privacy policy     license     sitemap
© 2004-2010 HIOX INDIA