Following is my simple html:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<span style="display:inline-block;width:49%;text-align:center"> some text</span>
<span style="display:inline-block;width:49%;text-align:center"> some text</span>
</body>
</html>
I want row to be divided into 2 equal space/columns but when I use 50% width, second span comes to the next row.
What I did?
fixed both widths to 49% then it is working but I want space to be equally divided using 50%.
What am I missing?