Как сделать промежуток в бордюре на CSS

03.05.2022

Задача - сделать разрыв бордюра на CSS.

Т.е. есть блок .у него должен быть бордюр, но в каком-то месте он должен прерываться и, например, там должен выводиться другой элемент.

Схематично должно отображаться так:

pic1

Если бы фон был одноцветный, то решалось все просто - у логотипа и кнопки можно сделать фон такого же цвета и перекрыть им часть бордюра.

В нашем же случаи, такой вариант не получится, поэтому будем использовать отрицательный margin, для уменьшения дины бордюра.

Готовый демо вариант можно посмотреть тут.

HTML

 

<div class="box">
    <div class="top__icon">
        <img class="logo" src="logo.png" alt="logo">
    </div>

    <h1>
        САЙТ СКОРО ПОЯВИТСЯ
    </h1>
    <div class="text">
        <p>
        это текст-"рыба", часто используемый в печати и вэб-дизайне. Lorem Ipsum является стандартной "рыбой" для текстов на латинице с начала XVI века. В то время некий безымянный печатник создал большую коллекцию размеров и форм шрифтов, используя Lorem Ipsum для распечатки образцов. Lorem Ipsum не только успешно пережил без заметных изменений пять веков, но и перешагнул в электронный дизайн. Его популяризации в новое время послужили публикация листов Letraset с образцами Lorem Ipsum в 60-х годах и, в более недавнее время, программы электронной вёрстки типа Aldus PageMaker, в шаблонах которых используется Lorem Ipsum.    
        </p>
    </div>

    <div class="box__top">
        <div class="top"></div>
    </div>
    <div class="box__bottom">
        <div class="bottom"></div>
    </div>

    <div class="bottom__icon">
        <a class="link" href="/">Подробнее <i class="fas fa-hand-pointer"></i></a>
    </div>
</div>

CSS

 
*, ::before, ::after {
    box-sizing: border-box;
}

body {
    background: url(bg.jpg) no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.box {
    position: relative;
    margin: 50px 0 0 0;
    width: 100%;
    height: 85vh;
    border-left: 4px solid white;
    border-right: 4px solid white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box__top {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.box__top {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.box__top:before,
.box__top:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 4px;
    width: 50%;
}

.box__top:before {
    left: 0;
    margin-left: -200px;
    border-top: 4px solid white;
}

.box__top:after {
    right: 0;
    margin-right: -200px;
    border-top: 4px solid white;
}

.top {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 70px;
    height: 70px;
}

.top__icon {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -35px;
    margin: 0 auto;
    width: 300px;
}

.logo {
    width: 300px;
}

@media (max-width: 767px) {
    .box {
        margin: 20px 0 0 0;
    }

    .top__icon {
        width: 120px;
    }

    .logo {
        width: 120px;
        margin-top: 20px;
    }

    .box__top:before {
        margin-left: -80px;
    }

    .box__top:after {
        margin-right: -80px;
    }
}


.box__bottom {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.box__bottom {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.box__bottom:before,
.box__bottom:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 50%;
}

.box__bottom:before {
    left: 0;
    margin-left: -90px;
    border-bottom: 4px solid white;
}

.box__bottom:after {
    right: 0;
    margin-right: -90px;
    border-bottom: 4px solid white;
}

.bottom {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 150px;
    height: 25px;
}

.bottom__icon {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    margin: 0 auto;
    width: fit-content;
    height: 25px;
}

.link {
    color: white;
    padding: 10px 16px;
    border: 1px white solid;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
}

h1 {
    font-size: calc(36px + 18 * (100vw / 1600));
    padding-bottom: 20px;
    border-bottom: 1px solid white;
    text-align: center;
}

.text {
    text-align: center;
    font-size: calc(18px + 4 * (100vw / 1600));
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5em;
}

@media (max-width: 767px) {
    h1 {
        font-size: calc(36px + (18 + 18 * 0.7) * ((100vw - 340px) / 1600));
    }

    .text {
        font-size: calc(18px + (4 + 4 * 0.7) * ((100vw - 340px) / 1600));
    }

    .text {
        font-size: 16px;
    }
}


Категории: CSS
Яндекс.Метрика