Academic Tutorials



English | French | Portugese | German | Italian
Google

Home Source Codes E-Books Downloads Contact Us About Us

CSS Tutorial
CSS Introduction
CSS Basic Syntax
CSS How to Insert
CSS Selector
CSS Internal
CSS External
CSS Inline
CSS Classes
CSS Background
CSS Text
CSS Font
CSS Border
CSS Margin
CSS Padding
CSS List
CSS Dimension
CSS Classification
CSS Positioning
CSS Pseudo-class
CSS Pseudo-element
CSS Media Types
CSS Mouse Cursor
CSS Properties
CSS Layers
CSS Float
CSS Summary

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
AJAX Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PHP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
.NET (dotnet)
Microsoft.Net
XML Web Services
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills


CSS Border Properties
Previous Next

  • A border can be a visual separator between the padding on the inside and the margin on the outside.


  • The width, color, and style of the entire border or each of these properties can be set using border properties.


  • To define the borders around an element, the CSS border properties



  • Border Width Proprety:

    If you want to set all four widths at the same time, in format A B C and D as pictured above,the border-width property is used. The value can be thin, medium, thick, or a numeric value and unit, such as 5px or 0.2em.

    In every paragraph if you want to a medium border around, you could use:

    CSS Code
    p { border-width: medium; }
    /* This sets all to medium */
    p { border-width: medium medium; }
    /* This sets top/bottom medium then right/left medium */
    p { border-width: medium medium medium medium; }
    /* Set each A B C and D */

    The default border is no border at all, if you want any border to visually appear, you'll need to add a second property, border-style. The values for border-style are: none, dotted, dashed, solid, double, groove, ridge, inset, outset.

    So let's make each paragraph have a medium border that is dotted:

    CSS Code
    p { border-width: medium; border-style: dotted; }
    Font Variant

    So close to getting our border perfect. But what if the border to be blue Simple. The border-color property is set to blue

    p { border-width: medium; border-style: dotted; border-color: blue; }

    Wouldn't it be nice to have a combination property? There is It's just border and it expects width, style, then color. So the example immediately above could be simplified to:

    CSS Code
    p { border: medium dotted blue; }

    If you can set each of the four borders individually. The properties are border-top, border-right, border-bottom, and border-left. The values expected are width, style, then color. If you wanted every paragraph with a dotted left border in red, and a dashed right border in purple, you could use:

    CSS Code
    p { border-left: dotted red; border-right: dashed purple; }




    The follwing table describe the border Properties:

    Property Description values
    border A shorthand property for setting all of the properties for the four borders in one declaration border-width
    border-style
    border-color
    border-bottom

    A shorthand property for setting all of the properties for the bottom border in one declaration

    border-bottom-width
    border-style
    border-color
    border-bottom-color Sets the color of the bottom border border-color
    border-bottom-style Sets the style of the bottom border border-style
    border-bottom-width Sets the width of the bottom border thin
    medium
    thick
    length
    border-color Sets the color of the four borders, can have from one to four colors color
    border-left A shorthand property for setting all of the properties for the left border in one declaration border-left-width
    border-style
    border-color
    border-left-color Sets the color of the left border border-color
    border-left-style Sets the style of the left border/td> border-style
    border-left-width Sets the width of the left border thin
    medium
    thick
    length
    border-right A shorthand property for setting all of the properties for the right border in one declaration order-right-width
    border-style
    border-color
    border-right-color Sets the color of the right border border-color
    border-right-style Sets the style of the right border border-style
    border-right-width Sets the width of the right border thin
    medium
    thick
    length
    border-style Sets the style of the four borders, can have from one to four styles none
    hidden
    dotted
    dashed
    solid
    double
    groove
    ridge
    inset
    outset
    border-top A shorthand property for setting all of the properties for the top border in one declaration border-top-width
    border-style
    border-color
    border-top-color Sets the color of the top border border-color
    border-top-style Sets the style of the top border border-style
    border-top-width Sets the witdth of the top border thin
    medium
    thick
    length
    border-width A shorthand property for setting the width of the four borders in one declaration, can have from one to four values thin
    medium
    thick
    length


    Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
    • blinkbits
    • BlinkList
    • blogmarks
    • co.mments
    • connotea
    • del.icio.us
    • De.lirio.us
    • digg
    • Fark
    • feedmelinks
    • Furl
    • LinkaGoGo
    • Ma.gnolia
    • NewsVine
    • Netvouz
    • RawSugar
    • Reddit
    • scuttle
    • Shadows
    • Simpy
    • Smarking
    • Spurl
    • TailRank
    • Wists
    • YahooMyWeb

    Previous Next

    Keywords: css table border, css border styles, css image border, css border code


    HTML Quizes
    HTML Quiz
    XHTML Quiz
    CSS Quiz
    TCP/IP Quiz
    XML Quizes
    XML Quiz
    XSL Quiz
    XSLT Quiz
    DTD Quiz
    Schema Quiz
    XForms Quiz
    XSL-FO Quiz
    XML DOM Quiz
    XLink Quiz
    XQuery Quiz
    XPath Quiz
    XPointer Quiz
    RDF Quiz
    SOAP Quiz
    WSDL Quiz
    RSS Quiz
    WAP Quiz
    Web Services Quiz
    Browser Scripting Quizes
    JavaScript Quiz
    VBScript Quiz
    AJAX Quiz
    DHTML Quiz
    HTML DOM Quiz
    WMLScript Quiz
    E4X Quiz
    Server Scripting Quizes
    ASP Quiz
    PHP Quiz
    PERL Quiz
    SQL Quiz
    ADO Quiz
    .NET (dotnet) Quizes
    Microsoft.Net Quiz
    XML Web Services Quiz
    ASP.Net Quiz
    .Net Mobile Quiz
    C# : C Sharp Quiz
    ADO.NET Quiz
    VB.NET Quiz
    Multimedia Quizes
    SVG Quiz
    Flash Quiz
    Media Quiz
    SMIL Quiz
    Web Building  Quizes
    Web Browsers Quiz
    Web Hosting Quiz
    W3C Quiz
    Web Building Quiz
    Web Quality Quiz
    Web Semantic Quiz
    Web Careers Quiz
    Java Quizes
    Java Quiz
    JSP Quiz
    Servlets Quiz
    Struts Quiz
    EJB Quiz
    JMS Quiz
    JMX Quiz
    Programming Langauges Quizes
    C Quiz
    C++ Quiz
    Visual Basic Quiz
    Data Structures Using C Quiz
    Soft Skills Quizes
    Communication Skills Quiz
    Time Management Quiz
    Project Management Quiz
    Team Work Quiz
    Leadership Skills Quiz
    Corporate Communication Quiz
    Negotiation Skills Quiz

    Privacy Policy
    Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.