css add circle to icon cart

Solutions on MaxInterview for css add circle to icon cart by the best coders in the world

showing results for - "css add circle to icon cart"
Christian
09 Aug 2017
1span{
2    font-size: 14px;
3    font-weight: 900;
4    position: absolute;
5    border: solid blue;
6    border-radius: 60%;
7    height: 14px;
8    width: 8px;
9    background:blue;
10}
Luca
25 Sep 2017
1<!DOCTYPE html>
2    <html>
3    <head>
4    <meta name="viewport" content="width=device-width, initial-scale=1">
5    <style>
6    </style>
7    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
8    </head>
9    <body>
10
11    <i class="fa" style="font-size:24px"></i>
12    <span> 5 </span>
13
14    </body>
15    </html>