1. 程式人生 > >用 border 屬性 畫各種邊框

用 border 屬性 畫各種邊框

text blog 屬性 .cn itl 效果 border items head

技術分享

嗯,如圖,想要個類似這樣的效果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>分割線</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        body{
            width: 640px;
            margin: 0 auto;
        }
        .div1{
            width: 600px;
            height: 100px;
            /**/
        }
        .div2, dl{
            width: 600px;
            height: 100px;
            display: flex;
            align-items: center;
        }
        .div2{
            margin-left: 50px;
        }
        dl{
            position: relative;
        }
        dt{
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: red;
            box-shadow: 10px 10px 10px rgba(255, 0, 0, 0.31);
            text-align: center;
            line-height: 100px;
            font-size: 36px;

        }
        dd{
            width: 450px;
            border: 1px solid red;
            height: 80px;
            line-height: 80px;
            border-radius: 30px;
            position: absolute;
            top:10%;
            left: 10px;
            padding-left: 100px;
        }
        .div2_01{
            border-left: 1px solid rgba(255, 0, 0, 0.65);
            border-bottom: 1px solid rgba(255, 0, 0, 0.65);
            width: 15px;
            height: 60%;
            align-self: flex-start;
        }
        .div2_02{
            border-left: 7px solid rgba(255, 0, 0, 0.65);
            margin-top: 15px;
            padding-left: 10px;
            height: 110px;
            line-height: 24px;
            display: flex;
            align-items: center;
            width: 450px;
        }

    </style>
</head>
<body>
<div class="div1">
    <dl>
        <dt>1</dt>
        <dd>新華社莫斯科7月4日電</dd>
    </dl>
</div>
<div class="div2">
    <div class="div2_01"></div>
    <p class="div2_02">

        新華社莫斯科7月4日電(記者範偉國霍小光李建敏)國家主席4日在莫斯科克裏姆林宮同俄羅斯總統普京舉行會談。兩國元首積極評價中俄傳統友誼和雙邊關系發展成就,決定攜手努力,
鞏固和發展平等信任、相互支持、共同繁榮、世代友好的中俄全面戰略協作夥伴關系,更好惠及兩國人民和各國人民。 </p> </div> </body> </html>

用 border 屬性 畫各種邊框