美文网首页
css应用技巧

css应用技巧

作者: 色即是猫 | 来源:发表于2022-07-04 18:07 被阅读0次

【斜角按钮】

效果图
//html
//斜角按钮
<a class="title_button">信号机</a>
<a class="title_button_on">POM4</a>

//css
//斜角按钮
.title_button,.title_button_on{
    position: relative;
    display: inline-block;
    margin: 0 1px;
    padding: 0 15px;
    color: white;
    font-size: 14px;
  } 
  .title_button::before{
    background: #06479e;//默认背景色
    z-index: -1;//避免背景把按钮挡住
    position: absolute;
    content: '';
    top: 0;left: 0;right: 0;bottom: 0;
    transform: skewX(27deg);
  }

  .title_button_on::before,.title_button:hover::before{
    background: #035fdb;//鼠标移过及选中背景色
    z-index: -1;//避免背景把按钮挡住
    position: absolute;
    content: '';
    top: 0;left: 0;right: 0;bottom: 0;
    transform: skewX(27deg);
  }

相关文章

网友评论

      本文标题:css应用技巧

      本文链接:https://www.haomeiwen.com/subject/cyadbrtx.html