upon knowing that parent>div CSS selector is not recognizable in IE, i re-code my CSS styles from this e.g:
div#bodyMain div#paneLeft>div{/*styles here*/}
to this:
div#bodyMain div#paneLeft div[id|="subPane"]{/*styles here*/}
here's my html snippet:
<div id="bodyMain">
<div id="paneLeft">
<div id="subPaneCategory">
<p id="subPaneTitle">Shop Item Categories</p>
<!--other html here -->
</div></div</div>
The problem is my /styles here/ doesn't work in Mozilla now. are there somethings i need to know in the usage of element[attribute|="value"] ? thanks