Forum Moderators: not2easy
LINK rel=stylesheet type="text/css" HREF="name.css>
and
<style type="text/css"> @import url("aqhhomepage.css"); </style>
I think it might be slowing down my pages so I want to put it all on one style sheet.
This is what happens when you do a bunch of css then leave it for two years. I don't have a clue what I was thinkig at the time I set this up. I'm going to keep up on CSS better from now on.
I started using @import many years ago because NN4 didn't understand it.
If you don't want NN4 or any earlier browsers to read your CSS, just simply add the media tag to the end, I do this for all of my pages:
<link rel="stylesheet" type="text/css" href="style.css" media="all">
The older ones don't understand the media attribute and won't read the style sheet at all. Of course though, who cares about NN4 anymore?
LINK rel=stylesheet type="text/css" HREF="name.css>
on several pages and there seems to be a slight delay before the background comes up.
But when I also have
<style type="text/css"> @import url("morestuff.css"); </style>
I don't get the delay.
This is in my LINK style sheet.
body {
background-color: #FFFFF0;
background-image:url(background.gif);
font-family: Arial;
color: #330000;
}
So I can't understand why the the
@import url("morestuff.css")
helps something from the other style sheed come up faster.
added - I gave up on netscape 4 long ago.