javascript - 這個css怎麼寫
给我你的怀抱
给我你的怀抱 2017-05-19 10:40:27
0
4
694

#這個分類類別目的這個圖形 css怎麼寫 我的方法是boder-bottom加上一個相對定位的偽類

有沒有好的思路

给我你的怀抱
给我你的怀抱

全部回覆(4)
给我你的怀抱

利用border以及:after實現, 為了觀看效果方便,以下demo線條寬度設定為2px.
線上預覽

html >>>>>>

<p class='treeline'></p> 

css >>>>>>

.treeline {
  display: inline-block;
  width: 100px;
  height: 26px;
  padding: 12px 0;
  box-sizing: border-box;
  border-left: 2px solid #888;
}
.treeline:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #888;
}
某草草

豎線用border,橫線用before

    .list-ui{
      position: relative;
      margin-left: 5px;
      padding-left: 45px;
      border-left: 1px solid #ccc;
    }
    .list-ui:before{
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -0.5px;
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: #ccc;
    }

PHPzhong

我有個大膽的想法~,用::before 和 ::after組在一起

伊谢尔伦

聲明一個class border寫一條橫線 在用偽類寫個橫線然後旋轉90度 移動下位置 完事
然後這個class就可以復用了~~

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板