Can anyone tell me what i am doing wrong. I have the following HTML
<div id="dialog-container">
<div id="dialog-box" title="" >
<div id="dialog-icon" >
</div>
<p>
<span id="dialog-message"></span>
</p>
</div>
</div>
I have some css which floats to the left. If i enter the following it works
#dialog-box #dialog-icon
{
float: left;
height: 32px;
width: 32px;
}
but if i enter 1 more rule i.e insert #dialog-container before the #dialog-box then its not applied liek this
#dialog-container #dialog-box #dialog-icon
{
float: left;
height: 32px;
width: 32px;
}
but I thought this means apply to dialog-icon thats inside a dialog-box and that is inside a dialog-container?
Am i missing something?
Thanks
EDIT
The question has been edited as i didn't paste the html correctly, it is now...