Looking for some help with styling HTML:
<div id="menubar">
<menu id="menubarTransportControls">Foobar</menu>
</div>
Curious why this CSS rule...
#menubar menu {
width: auto;
}
...is overriding...
#menubarTransportControls {
width: 100%;
}
Using IE7 with the HTML5 shiv javascript. Appreciate any tips!