clock  Mon - Sun 8.00 AM - 8.00 PM
fb
instagram
play store
pinterest

More

CSS Border Style

teknowize

CSS Border Style

It is allow you to specify how the border style should look like.

 

Syntax -

border-style: style_value;

 

Some rules are :-

  • If we use one style value in border-style property then style of all four side of the border will same style .
  • If we use two style value in border-style property then, first style value use in top and bottom border style but second style value use in right and left border.
  • If we use three style value in border property then , first style value use in top border , second style use in bottom border and third style use in left & right border.
  • If we use four style value in border property then , first style  value use in top border,second style value use in right border , third style value use in bottom border and fourth style  value use in left border.(it start from top border and move clockwise to left)

 

If there is only one style value in border style property :

border-style: dotted;

  1. style of all four borders are dotted.

 

If there is two style values in border style property:

border-style: dotted solid;

  1. style of top and bottom borders are dotted.
  2. style of right and left borders are solid.

 

If there is three style values in border style property:

border-style: dotted solid double;

  1. style of top border is dotted.
  2. style of right and left borders are solid.
  3. style of bottom border is double.

 

If there is four style values in border style property:

border-style: dotted solid double dashed;

  1. style of top border is dotted.
  2. style of right border is solid.
  3. style of bottom border is double.
  4. style of left border is dashed.

 

Values

Dotted

Specifies a dotted border.

dashed

Specifies a dashed border.

Solid

Specifies a solid border.

double

Specifies a double border.

groove

Specifies a 3D grooved border. The effect depends on the border-color value.

ridge

Specifies a 3D ridge border. The effect depends on the border-color value.

inset

Specifies a 3D inset border. The effect depends on the border-color value.

outset

Specifies a 3D outset border. The effect depends on the border-color value.

 

For example:-

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS Border Style</title>

    <style>
        .one_style {
            border-style: dashed;
        }

        .two_style {
            border-style: solid dotted;
        }

        .three_style {
            border-style: solid dashed dotted;
        }

        .four_style {
            border-style: solid dotted dashed groove;
        }
    </style>
</head>

<body>
    <h4 class="one_style">One style border!</h4>
    <h4 class="two_style">two style border!</h4>
    <h4 class="three_style">three style border!</h4>
    <h4 class="four_style">four style border!</h4>

</body>

</html>

 

Output

CSS Border style

 

Style each side of border with different style

We can write seperate tag for styling each border.

a) border-style: style_value;

b) border-style: style_value;

c) border-style: style_value;

d) border-style: style_value;

 

Values

Dotted

Specifies a dotted border.

dashed

Specifies a dashed border.

Solid

Specifies a solid border.

double

Specifies a double border.

groove

Specifies a 3D grooved border. The effect depends on the border-color value.

ridge

Specifies a 3D ridge border. The effect depends on the border-color value.

inset

Specifies a 3D inset border. The effect depends on the border-color value.

outset

Specifies a 3D outset border. The effect depends on the border-color value.

 

For Example:-

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Style each side of border with different style</title>
  <style>
    .top_style {
      border-top-style: dotted;
    }

    .bottom_style {
      border-bottom-style: dashed;
    }

    .left_style {
      border-left-style: solid;
    }

    .right_style {
      border-right-style: double;
    }
  </style>
</head>

<body>
  <h4 class="top_style">One style border!</h4>
  <h4 class="bottom_style">two style border!</h4>
  <h4 class="left_style">three style border!</h4>
  <h4 class="right_style">four style border!</h4>
</body>

</html>

 

Output

Style each side of border with different style

Coursera, Codeacademy, Udacity, W3Schools, Udemy, Alison, TheNewBoston, edX, P.S.Codewars,Freecodecamp, Managing technical debt blog, Scrimba, Codepen, Codepen/challenges, The Odin Project, htmlreference.​io, cssreference.​io, Frontend Mentor, Dev Challenges, MDN, Code Mentor, Coding Dojo, CSS Battle, Codier, Ace Frontend, Can I Use, CSS Tricks, 30 Seconds of Code,tutorialspoint, Neumorphism, Shaddows Brumm, Fancy Border Radius, Glow Generator, Clothoid Corners, Glassmorphism, Clipy, CSS Filters, Base64 Image, Quantity Queries, Animations, Cubic-Bezier, Keyframes, Wait Animate, Transition.Style, graphic design, web design, website design, website builder, web developer, web designer, webdesign, ecommerce website, web design company, website creator, website designer, responsive web design, web development company, best website design, web design software, web page design, build a website, web developer salary, design website, web design courses, how to design a website, web design inspiration, website layout, web designer salary, web application development, ecommerce website design, web agency, software development company, web design tutorial, web programming, design company, website design templates, what is web designing, web developer jobs, website developer, web design agency, freelance web developer, web design services, freelance web designer, graphic design websites, web solutions, ecommerce website development, free website design, web development courses, webdev, web developers, web development tools, website design services, developpeur web, web design london, website design ideas, web designing and programming, design a website, web design and development, web dev, web development services, homepage design, best designed websites, cheap website design, learn web design, web design templates, web design tools, web design jobs, website design inspiration, web design india, flash website, website developers, designer websites, website services, website design cost, good website design, site design, simple website design, cool website designs, modern website design, graphic designer websites, webcode, best web design software, website making, free web design software, mobile website design, learn web development, front end web developer, how to become a web developer, web developer portfolio, web development company in india, python web development, web development tutorial, website company, website design and development, web company, webdesigning, professional website design, affordable web design, best web design company, creative web design, top website designs, website design pricing, web developer tools, how to develop a website

CSS