0
hey, circle, html
how can I make a circle with css with contents inside it .?
4 Réponses
+ 1
Try:
<div style="border: 1px solid black; border-radius: 50%;">
<p>Contents</p>
</div>
Edit: Sorry, forgot some punctuation.
Also, you can set the height & width to any measurement, so long as they are equal.