briancostea
Programmer
Anyone know why this won't display correctly? It will only display the squares in the ul if i specify in the list-style: square inside; instead of list-style: square inside;
CSS:
#popAnalyze
{
background-image:url(../images/popAnalyze.gif);
background-repeat:no-repeat;
height:150px;
width:200;
text-align:left;
padding-top:10px;
padding-right:5px;
padding-left:10px;
}
ul
{
padding: 0 0 0 0;
margin: 0 0 0 0;
list-style: square;
}
HTML:
<div id=popAnalyze>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
CSS:
#popAnalyze
{
background-image:url(../images/popAnalyze.gif);
background-repeat:no-repeat;
height:150px;
width:200;
text-align:left;
padding-top:10px;
padding-right:5px;
padding-left:10px;
}
ul
{
padding: 0 0 0 0;
margin: 0 0 0 0;
list-style: square;
}
HTML:
<div id=popAnalyze>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>