Liste ist leider zu weit eingerückt

Status
Nicht offen für weitere Antworten.

Geflügel

Erfahrenes Mitglied
Hier der Code:

<div style="border: 1px solid #000;">
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
<li>List Item 4</li>
<li>List Item 5</li>
</ul>
</div>

Die Liste ist zu weit rechts. Sie soll direkt am linken Rahmen liegen. (Mit Null Pixel Abstand)

Wie es sein soll, siehe Anhang.

Danke im Voraus !!
 

Anhänge

  • prob1.png
    prob1.png
    556 Bytes · Aufrufe: 27
Code:
<div style="border: 1px solid #000; width: 600px; margin: 0 auto;">
	<ul style="padding: 0;">
		<li>List Item 1</li>
		<li>List Item 2</li>
		<li>List Item 3</li>
		<li>List Item 4</li>
		<li>List Item 5</li>
	</ul>
</div>

Jetzt sind die Bullets außerhalb der Layers...
Siehe Anhang!
 

Anhänge

  • prob2.jpg
    prob2.jpg
    5,2 KB · Aufrufe: 18
Versuch es mal hiermit:

Code:
ul {
margin:0;
padding:0;
list-style-position:inside;
}
 
Das geht! Danke !! :)

Code:
<div style="border: 1px solid #000; width: 600px; margin: 0 auto;">
	<ul style="padding: 0; margin: 0; list-style-position:inside;">
		<li>List Item 1</li>
		<li>List Item 2</li>
		<li>List Item 3</li>
		<li>List Item 4</li>
		<li>List Item 5</li>
	</ul>
</div>
 
Status
Nicht offen für weitere Antworten.
Zurück