iT邦幫忙

0

CSS 分隔線 中間帶文字 分隔線

  • 分享至 

  • xImage

CSS 實心分隔線 中間帶文字 實心分隔線在RWD怎麼設計比較好?
==== 天天開心 =====

想了老半天沒有比較好的方法......

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
Felix
iT邦研究生 2 級 ‧ 2022-02-19 13:03:41
<h1 data-text="標題"></h1>
h1 {
    position: relative;
}

h1::before {
    content: '';
    height: 5px;
    position: absolute;
    inset: 0;
    background-color: #333;
    margin: auto;
}

h1::after {
    content: attr(data-text);
    display: table;
    position: absolute;
    inset: 0;
    background-color: #fff;
    margin: auto;
}
ppp896 iT邦新手 4 級 ‧ 2022-02-19 14:08:15 檢舉

感恩,謝謝

我要發表回答

立即登入回答