2
I have a centralized list.
<ul style="text-align: center; list-style-position: inside;">
<li>abc</li>
<li>xyz</li>
</ul>
The point is that Bullet is very far from the text. I would like it to be very close. I have tried padding
and margin
in the style of ul
and of li
. But none worked.
try this:
<li><span>abc</span><li>
and in css doul li { position:relative; left:-5px; }
– Edilson
Hello, thank you for the answer. Have you tested this solution? For me it didn’t work. Or I’m doing it wrong. <ul style="text-align: center; list-style-position: Inside;"> <li style="position:relative; left:-5px;"><span>abc</span></li> </ul>
– Olavor
do not apply styles within tag
li
orul
, tag themstyle
or in an archivecss
.– Edilson