zoukankan      html  css  js  c++  java
  • 不规则div的写法

    编写过程中的效果:

    HTML代码:

    <div class="se-slope se-slope-grey">输入手机号</div>  
    <div class="se-slope se-slope-blue">设置密码</div>  
    .se-container{width: 100%;}  
    .se-slope{width: 50%;height: 40px;position: relative;float: left;overflow: hidden;}  
    .se-slope-blue{background:#45AAFF;}  
    .se-slope-grey{background:#9A9A9A;}  
    .se-slope-blue:nth-child(even):after{content: '';position: absolute;display: block;bottom: 0px;border-top: 20px solid transparent;border-bottom: 20px solid transparent;}  
    .se-slope-blue:nth-child(even):after{border-left: 30px solid #9A9A9A;}  
     
      实现的关键是使用CSS3中的伪类选择器nth-child(even)匹配为偶数的的元素。然后在其后插入内容。插入的内容为{border-top: 20px solid transparent;border-bottom: 20px solid transparent;}此样式。将上下border设为透明。
    简单概括为:当你需要三角形小区块向左(右),就设置上下border隐藏,并显示其右(左)boder。显示上下同理
  • 相关阅读:
    The library 'hostpolicy.dll' required to execute the application was not found in
    矩阵乘法
    2019-11-1
    四边形不等式的应用
    2019-10-30
    2019-10-29
    差分与前缀和
    平衡树SPLAY
    可爱的树链剖分(染色)
    cable tv network
  • 原文地址:https://www.cnblogs.com/sakura-Master/p/4054159.html
Copyright © 2011-2022 走看看