I'm having trouble with centering text inside a circular shape. Getting the alignment right in the middle of the circle is proving to be difficult for me.
Here's the code I've experimented with so far:
CSS:
.circle {
margin:auto;
border-radius: 50%;
background: rgb(0, 34, 102);
padding: 10px;
width: 110px;
height: 110px;
margin-top:1px;
color: rgb(255, 255, 255);
text-align: center;
}
HTML:
<td colSpan=2> <div class="circle"> Discuss <br> ideas and <br> projects </div> </td>
Check out the outcome here: