I am taking a XHTML programming class and using http://validator.w3....idate_by_upload and http://jigsaw.w3.org/css-validator/ to check my syntax. I had a problem today that took me way to long to find. I left out the # sign from my script. The website is using embedded CSS. I only Tried the first website and it said my syntax was ok. Maybe I should have copied the embedded css and tried to test that. Below is the embedded css. I left the # sign from my rightcolumn text so the float would not work correctly. Are there any other good programs to test code?
Thanks, Doug
body { font-family: Veranda,Arial,sans-serif;
margin: 0;
}
#wrapper { background-color:#e8b9e8;
color: #000066;
width: 100%;
min-width: 800px;
}
#leftcolumn { float: left;
width: 100px;
}
#rightcolumn { margin-left: 100px;
background-color: #ffffff;
color: #000000;
}
#logo { background-color: #eeeeee;
color: #cc66cc;
font-size: x-large;
border-bottom: 1px solid #000000;
padding: 10px;
}
.content { padding: 20px 20px 0 20px;
}
#floatright { margin: 10px;
float: right;
}
#footer { font-size: xx-small;
text-align: center;
clear: right;
padding-bottom: 20px;
}
#leftcolumn a { text-decoration: none;
margin: 15px;
display: block;
}
</style>
</head>