wrong numbering of elements styled with "display: list-item; list-style-type: decimal;"
Following code :
<style type="text/css">
div { display: block; margin-left: 2em; } span { display: list-item; list-style-type: decimal; }
</style>
<div>
<span>first</span> <span>second</span> <span>third</span>
</div>
Displays as :
0. first 0. second 0. third
while looking fine in other browsers (checked IE7, chrome, opera, safari...)
Following code :
<!DOCTYPE html>
<style type="text/css">
div {
display: block;
margin-left: 2em;
}
span {
display: list-item;
list-style-type: decimal;
}
</style>
<div>
<span>first</span>
<span>second</span>
<span>third</span>
</div>
Displays as :
0. first
0. second
0. third
while looking fine in other browsers (checked IE7, chrome, opera, safari...)
Được chỉnh sửa bởi dmuller vào
Tất cả các câu trả lời (1)
updated code snap...
Được chỉnh sửa bởi dmuller vào