my take on css :
text wise ...
ok so my general grasp and idea on css is that ... you can make the text / color / size that you make it look like and impliment in your originally designed layout and on your screen and make everyone see the EXACT same thing? in each and every resolution .. monitor size etc ?
ok so im working on a page... my friend sees this ...
<!-- m --><a class="postlink" href="http://www.sameoldtrip.org/images/example1.jpg">http://www.sameoldtrip.org/images/example1.jpg</a><!-- m -->
but i see this and want everyone else to see this as well...
<!-- m --><a class="postlink" href="http://www.sameoldtrip.org/images/example2.jpg">http://www.sameoldtrip.org/images/example2.jpg</a><!-- m -->
and with the ability of css i will be able to do so?
am i wrong? or am i right? ;/
thanks Originally posted by sameoldtrip.org
you can make the text / color / size that you make it look like and impliment in your originally designed layout and on your screen and make everyone see the EXACT same thing? in each and every resolution .. monitor size etc ?Nope, you can't do that, because you don't know what preferences the user may have set.so my page will looked messed up and never as i see it on my screen? ;/All I see is basically a difference in font size. That's a specific area that's impossible to control because most browser vendors get the fundamental base font size wrong. The tightest control you can have is to specify font-size in px but there is still no guarantee and IE/Win users will not be able to zoom the fonts if they need to for readibility. A number of the CSS hotspots like ALA and Zeldman have articles about the font sizing dilemma.Originally posted by sameoldtrip.org
so my page will looked messed up and never as i see it on my screen? ;/ That depends on your definition of messed up. I'd say it's better to allow users to user their prefered font size, than forcing them to your your's, no?
text wise ...
ok so my general grasp and idea on css is that ... you can make the text / color / size that you make it look like and impliment in your originally designed layout and on your screen and make everyone see the EXACT same thing? in each and every resolution .. monitor size etc ?
ok so im working on a page... my friend sees this ...
<!-- m --><a class="postlink" href="http://www.sameoldtrip.org/images/example1.jpg">http://www.sameoldtrip.org/images/example1.jpg</a><!-- m -->
but i see this and want everyone else to see this as well...
<!-- m --><a class="postlink" href="http://www.sameoldtrip.org/images/example2.jpg">http://www.sameoldtrip.org/images/example2.jpg</a><!-- m -->
and with the ability of css i will be able to do so?
am i wrong? or am i right? ;/
thanks Originally posted by sameoldtrip.org
you can make the text / color / size that you make it look like and impliment in your originally designed layout and on your screen and make everyone see the EXACT same thing? in each and every resolution .. monitor size etc ?Nope, you can't do that, because you don't know what preferences the user may have set.so my page will looked messed up and never as i see it on my screen? ;/All I see is basically a difference in font size. That's a specific area that's impossible to control because most browser vendors get the fundamental base font size wrong. The tightest control you can have is to specify font-size in px but there is still no guarantee and IE/Win users will not be able to zoom the fonts if they need to for readibility. A number of the CSS hotspots like ALA and Zeldman have articles about the font sizing dilemma.Originally posted by sameoldtrip.org
so my page will looked messed up and never as i see it on my screen? ;/ That depends on your definition of messed up. I'd say it's better to allow users to user their prefered font size, than forcing them to your your's, no?