CSS - border-style
border-style
Sets the style of the four borders
    Property Variable Name
border-style
    Available Values for border-style
none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit
    
  Examples Using border-style values
Example using border-style none
Example using border-style none
Here is an example using border-style:none;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-1 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-1 {
  /* this is the test property */
  border-style:none;
}
</style>
<h2>Example using border-style none</h2>
<p>Here is an example using <code>border-style:none;</code></p>
<div class='rainbow demo-box-1'>
</div>
        Example using border-style hidden
Example using border-style hidden
Here is an example using border-style:hidden;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-2 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-2 {
  /* this is the test property */
  border-style:hidden;
}
</style>
<h2>Example using border-style hidden</h2>
<p>Here is an example using <code>border-style:hidden;</code></p>
<div class='rainbow demo-box-2'>
</div>
        Example using border-style dotted
Example using border-style dotted
Here is an example using border-style:dotted;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-3 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-3 {
  /* this is the test property */
  border-style:dotted;
}
</style>
<h2>Example using border-style dotted</h2>
<p>Here is an example using <code>border-style:dotted;</code></p>
<div class='rainbow demo-box-3'>
</div>
        Example using border-style dashed
Example using border-style dashed
Here is an example using border-style:dashed;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-4 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-4 {
  /* this is the test property */
  border-style:dashed;
}
</style>
<h2>Example using border-style dashed</h2>
<p>Here is an example using <code>border-style:dashed;</code></p>
<div class='rainbow demo-box-4'>
</div>
        Example using border-style solid
Example using border-style solid
Here is an example using border-style:solid;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-5 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-5 {
  /* this is the test property */
  border-style:solid;
}
</style>
<h2>Example using border-style solid</h2>
<p>Here is an example using <code>border-style:solid;</code></p>
<div class='rainbow demo-box-5'>
</div>
        Example using border-style double
Example using border-style double
Here is an example using border-style:double;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-6 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-6 {
  /* this is the test property */
  border-style:double;
}
</style>
<h2>Example using border-style double</h2>
<p>Here is an example using <code>border-style:double;</code></p>
<div class='rainbow demo-box-6'>
</div>
        Example using border-style groove
Example using border-style groove
Here is an example using border-style:groove;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-7 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-7 {
  /* this is the test property */
  border-style:groove;
}
</style>
<h2>Example using border-style groove</h2>
<p>Here is an example using <code>border-style:groove;</code></p>
<div class='rainbow demo-box-7'>
</div>
        Example using border-style ridge
Example using border-style ridge
Here is an example using border-style:ridge;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-8 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-8 {
  /* this is the test property */
  border-style:ridge;
}
</style>
<h2>Example using border-style ridge</h2>
<p>Here is an example using <code>border-style:ridge;</code></p>
<div class='rainbow demo-box-8'>
</div>
        Example using border-style inset
Example using border-style inset
Here is an example using border-style:inset;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-9 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-9 {
  /* this is the test property */
  border-style:inset;
}
</style>
<h2>Example using border-style inset</h2>
<p>Here is an example using <code>border-style:inset;</code></p>
<div class='rainbow demo-box-9'>
</div>
        Example using border-style outset
Example using border-style outset
Here is an example using border-style:outset;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-10 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-10 {
  /* this is the test property */
  border-style:outset;
}
</style>
<h2>Example using border-style outset</h2>
<p>Here is an example using <code>border-style:outset;</code></p>
<div class='rainbow demo-box-10'>
</div>
        Example using border-style initial
Example using border-style initial
Here is an example using border-style:initial;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-11 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-11 {
  /* this is the test property */
  border-style:initial;
}
</style>
<h2>Example using border-style initial</h2>
<p>Here is an example using <code>border-style:initial;</code></p>
<div class='rainbow demo-box-11'>
</div>
        Example using border-style inherit
Example using border-style inherit
Here is an example using border-style:inherit;
Code
<style>
/* Some Styles so we can see the element */
.rainbow {
  background:linear-gradient(45deg, #dc3b3e, #3b99dc 50%, #3bdc90 75%, rgb(255 141 0) 100%);
}
.demo-box-12 {
  background:#999;
  margin-bottom:10px;
  height:220px;
  width:100%;
  display: flex;
  flex-wrap: wrap;
  color:#FFF;
  align-items: center;
  justify-content: center;
  border:20px solid #000;
  /*border-image:url(https://css.kruxor.com/images/pexels-johannes-rapprich-4996652-1200.jpg) 30 round;*/
}
.demo-box-12 {
  /* this is the test property */
  border-style:inherit;
}
</style>
<h2>Example using border-style inherit</h2>
<p>Here is an example using <code>border-style:inherit;</code></p>
<div class='rainbow demo-box-12'>
</div>