css应用技巧

2022-07-04  本文已影响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);
  }
上一篇 下一篇

猜你喜欢

热点阅读