How to create Tag Shape using css

This is one of the simple css trick to make the tag shape using ::after selector. This is very useful when create a website this type of simple shapes take a main role in the websites. and you can change the color combination according to your choice using css code.

Lot of the eCommerce websites are using this type of tag shape for give the discounts and other deals and offers so it is highlighting the particular products. This types of shapes are repeatedly used by the lot of the websites.

This is very easy to create using simple css shape tricks  using the :: after selector. Not only eCommerce website lot of general websites also it needs some time to highlight the text.



Css Code:


#swc{
position:relative;
margin:0 5px 0 10px;
display:inline-block;
height:66px;
padding: 0 35px 0 20px;
    font-size: 25px;
line-height:65px;
    cursor: pointer;
    font-weight: 100;
    margin: 20px 25px;
    background:#f3f3f3;
    transition: background 0.3s;
}

#swc:after{
position:absolute;
content:"";
right:-19px;
width: 1px;
height:0px;
border-left:18px solid #f3f3f3;
border-top:  33px solid transparent;
border-bottom: 33px solid transparent;
    transition: border 0.3s;
}

#swc:hover{
    background: green;
color:#ffffff;
}

#swc:hover:after{
    border-left-color:green;
}


Html Code:


<span class="pricetag-right" id="swc">Tag Content!</span>

Post a Comment

0 Comments