Open In App

CSS box decoration break Property

The box-decoration-break property is used to control the box decoration after the fragmentation of the paragraph. It defines the background, padding, border, margin, and clip-path of an element that is applied when the box for the element is broken into separated parts.

Default Value: slice



Syntax:  

box-decoration-break: slice|clone|initial|inherit;

Property values: 



Example: In this example, we are using box-decoration-break: slice; property.




<!DOCTYPE html>
<html>
<head>
    <title>box-decoration-break property</title>
    <style>
        body {
            text-align: center;
            width: 80%;
        }
 
        span {
            border: 2px solid green;
            padding: 5px;
            border-radius: 6px;
            font-size: 24px;
            line-height: 3;
        }
 
        span.geek {
            -webkit-box-decoration-break: slice;
            -o-box-decoration-break: slice;
            box-decoration-break: slice;
        }
 
        .gfg {
            font-size: 40px;
            color: green;
            font-weight: bold;
        }
    </style>
</head>
 
<body>
    <div class="gfg">GeeksforGeeks</div>
    <div class="geeks">
        A computer science portal for geeks
    </div>
    <h2>box-decoration-break: slice;</h2>
    <span class="geek">
        Prepare for the Recruitment drive
        of product based companies<br>
        like Microsoft, Amazon, Adobe etc
        with a free online placement<br>
        preparation course. The course focuses
        on various MCQ's & Coding<br>
        question likely to be asked in the
        interviews & make your<br>
        upcoming placement season efficient
        and successful.
    </span>
</body>
</html>

Output: 

Example: In this example, we are using box-decoration-break: clone; property.




<!DOCTYPE html>
<html>
<head>
    <title>box-decoration-break property</title>
    <style>
        body {
            text-align: center;
            width: 80%;
        }
 
        span {
            border: 2px solid green;
            padding: 5px;
            border-radius: 6px;
            font-size: 24px;
            line-height: 3;
        }
 
        span.geek {
            -webkit-box-decoration-break: clone;
            -o-box-decoration-break: clone;
            box-decoration-break: clone;
        }
 
        .gfg {
            font-size: 40px;
            color: green;
            font-weight: bold;
        }
    </style>
</head>
 
<body>
    <div class="gfg">GeeksforGeeks</div>
    <div class="geeks">
        A computer science portal for geeks
    </div>
    <h2>box-decoration-break: clone;</h2>
    <span class="geek">
        Prepare for the Recruitment drive
        of product based companies<br>
        like Microsoft, Amazon, Adobe etc
        with a free online placement<br>
        preparation course. The course focuses
        on various MCQ's & Coding<br>
        question likely to be asked in the
        interviews & make your<br>
        upcoming placement season efficient
        and successful.
    </span>
</body>
</html>

Output: 

Example: In this example, we are using box-decoration-break: initial; property.




<!DOCTYPE html>
<html>
<head>
    <title>box-decoration-break property</title>
    <style>
        body {
            text-align: center;
            width: 80%;
        }
 
        span {
            border: 2px solid green;
            padding: 5px;
            border-radius: 6px;
            font-size: 24px;
            line-height: 3;
 
        }
 
        span.geek {
            -webkit-box-decoration-break: initial;
            -o-box-decoration-break: initial;
            box-decoration-break: initial;
 
        }
 
        .gfg {
            font-size: 40px;
            color: green;
            font-weight: bold;
        }
    </style>
</head>
 
<body>
    <div class="gfg">GeeksforGeeks</div>
    <div class="geeks">
        A computer science portal for geeks
    </div>
    <h2>box-decoration-break: initial;</h2>
    <span class="geek">
        Prepare for the Recruitment drive
        of product based companies<br>
        like Microsoft, Amazon, Adobe etc
        with a free online placement<br>
        preparation course. The course focuses
        on various MCQ's & Coding<br>
        question likely to be asked in the
        interviews & make your<br>
        upcoming placement season efficient
        and successful.
    </span>
</body>
</html>

Output: 

Supported Browsers: The browsers supported by box-decoration-break Property are listed below:  


Article Tags :