Assume the following HTML5 document:
<!doctype html>
<html>
<head><title>try</title>
</head>
<body>
<h1>testing</h1>
<ul id='ul_id'>
<li id='li1_id'>one</li>
<li id='li2_id'>somelongertwo</li>
</ul>
</body></html>
what would be the CSS3 stylesheet so that the width of <ul id='ul_id'>
element would be the smallest to fit, so would be here the width of <li id='li2_id'>
plus its bullet, since the second list item is the widest item of the <ul id='ul_id'>
element?
I don't want the width of my <ul id='ul_id'>
to be as wide as the containing <body>
The context and motivation of this question is my optimizing (nearly minimizing) width of jqueryui menu question.