Open In App

CSS | border-block-width Property

Improve
Improve
Like Article
Like
Save
Share
Report

The border-block-width property in CSS is used to set the individual logical block border-width property values in a single place in the style sheet. It sets the border width top, and bottom of the defining border element.

Syntax:

border-block-width: width;

Property values:

  • width: This property holds the width of the border.

Below examples illustrate the border-block-width property in the CSS:

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <title>CSS | border-block-width Property</title>
    <style>
        h1 {
            color: green;
        }
          
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
          
        .one {
            border: 5px dashed cyan;
            border-block-width: 2px;
            background-color: purple;
        }
    </style>
</head>
  
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-block-width Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>
  
</html>                    


Output:

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <title>CSS | border-block-width Property</title>
    <style>
        h1 {
            color: green;
        }
          
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
          
        .one {
            border: 5px solid cyan;
            border-block-width: 2px;
            background-color: purple;
        }
    </style>
</head>
  
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-block-width Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>
  
</html>                    


Output:

Supported Browsers: The browsers supported by border-block-width property are listed below:

  • Firefox
  • Opera
  • Edge


Last Updated : 27 Mar, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads