MasterKaos
Programmer
I've got a problem with highlighting text in IE. I'm using divs to layout the page (see code below) and when i try to highlight text in IE 6 (both win98 and winXP) it acts erratically, highlighting the entire paragraph or the entire page, rather than a line or two.
Works fine in Netscape.
Is this an IE bug? Are there any workarounds?
Here's the relevant code from my css file:
----------------------------------------------------------------------------
The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.
Works fine in Netscape.
Is this an IE bug? Are there any workarounds?
Here's the relevant code from my css file:
Code:
div{
}
#content{
position:absolute;
left: 140px;
top:136px;
width: 480px;
text-align:justify;
}
#leftcol{
float:left;
width:480px;
}
#rightcol{
float:right;
width:0px;
}
#footer{
position:relative;
clear:both;
text-align:center;
font-family:"arial", sans-serif;
font-size:10px;
font-weight:bold;
}
----------------------------------------------------------------------------
The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.