How to make button in circle like whatsapp circle button on click which show person list | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to make button in circle like whatsapp circle button on click which show person list

30th Apr 2017, 5:49 PM
Dharmesh Shukla
Dharmesh Shukla - avatar
2 Answers
+ 2
<style> .circle { display:inline-block; background:red; border-radius:50%; width:6em; height:6em; line-height:6em; text-align:center; overflow:visible; } </style> <span class="circle">circle</span> <!-- This will style any element to a red circle with text in the middle... You can embed it in a <a> link element ( or style the link itself ), or any container ( can be a <button>, but an <input type="button"> must be styled as it cannot have html content, but just the 'value' attribute text type ): --> <a href="page.url"><span class="circle">circle</span></a> <div class="circle" onclick="myfunc();">circle</div>
1st May 2017, 6:28 AM
visph
visph - avatar
0
Create an image and then set a link to it
30th Apr 2017, 7:58 PM
Eldar Bakerman