This worked for me in your fiddle:
* { padding:0; margin:0; } #refer { margin:20% 0 0; width:100%; } #refer ul { text-align:center; } #refer ul li { display:inline-block; position: relative; height: auto; width: 100px; padding: 0; margin:0 50px; list-style: none; text-align: center; white-space: nowrap; border:#0f0 solid 1px; } .circlelink { display:block; width:100px; height:100px; border-radius:50px; font-size:20px; color:#fff; line-height:100px; text-align:center; text-decoration:none; background:linear-gradient(to bottom, #719ECE, #719FCE); } .circlelink:hover { text-decoration:none; background:#719ECE; box-shadow: 0 0 8px rgba(0, 0, 0, .8); -webkit-transform: scale(1.05, 1.07); -moz-transform: scale(1.05, 1.07); }
source share