The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> is not a valid value for the 'left' property., Validation Error in CSS
Joe_1975
post Jul 17 2012, 03:02 PM
Post #1





Group: Members
Posts: 1
Joined: 17-July 12
Member No.: 17,455



I'm using the following in my stylesheet.css file. I got the following errors which I marked in red. Please help why this error is showing

div#div-datagrid {
width: 220px;
height: 100px;
overflow: auto;
scrollbar-base-color:#ffeaff; ' Validation (CSS 2.1): 'scrollbar-base-color' is not a known CSS property name.
}

/* Locks the left column */
td.locked, th.locked {
font-size: 14px;
font-weight: bold;
text-align: center;
background-color: navy;
color: white;
border-right: 1px solid silver;
position:relative;
cursor: default;
/*IE5+ only*/
left: expression(document.getElementById("div-datagrid").scrollLeft-2); 'Validation (CSS 2.1): 'expression(document.getElementById("div-datagrid").scrollLeft-2)' is not a valid value for the 'left' property.
}

/* Locks table header */
th {
font-size: 14px;
font-weight: bold;
text-align: center;
background-color: navy;
color: white;
border-right: 1px solid silver;
position:relative;
cursor: default;
/*IE5+ only*/

left : expression(document.getElementById("div-datagrid").scrollLeft-2); 'Validation (CSS 2.1): 'expression(document.getElementById("div-datagrid").scrollLeft-2)' is not a valid value for the 'left' property.


top: expression(document.getElementById("div-datagrid").scrollTop-2); ' Validation (CSS 2.1): 'expression(document.getElementById("div-datagrid").scrollTop-2)' is not a valid value for the 'top' property.

z-index: 10;
}

/* Keeps the header as the top most item. Important for top left item*/
th.locked {z-index: 99;}

/* DataGrid Item and AlternatingItem Style*/
.GridRow {font-size: 10pt; color: black; font-family: Arial;
background-color:#ffffff; height:35px;}
.GridAltRow {font-size: 10pt; color: black; font-family: Arial;
background-color:#eeeeee; height:35px;}
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Jul 17 2012, 04:58 PM
Post #2


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



That's because they are proprietary MSIE extensions, and as such not part of the W3C spec.

If you want things to validate you might put them in a separate stylesheet, and hide that from the validator with MSIE's Conditional Comments.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 26th April 2024 - 07:17 AM