Hello. I actually have a PC right now because I can't afford a Mac yet, but I teach a web design class at a school that has Panther OS Macs in the classroom. I was attempting to demonstrate to my class how you can control the size of your text to be fixed regardless of the user's settings with CSS. Specifically, I was using this code:
body,td{
color: #333333;
background-color: #E2E1D9;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}
However, when I pulled up the web page in the browser, and changed the text zoom to 300%, fully expecting the text size to stay fixed.... it got way bigger. That was a bit embarrassing.
I was using IE, and unfortunately didn't think to try it in Safari, so I'll have to try that when I go back to school on Monday. But does anyone have any insight for me as to why this happened, and if there's a way to correct it?
Thanks much in advance for any help you might have for me!
body,td{
color: #333333;
background-color: #E2E1D9;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}
However, when I pulled up the web page in the browser, and changed the text zoom to 300%, fully expecting the text size to stay fixed.... it got way bigger. That was a bit embarrassing.
I was using IE, and unfortunately didn't think to try it in Safari, so I'll have to try that when I go back to school on Monday. But does anyone have any insight for me as to why this happened, and if there's a way to correct it?
Thanks much in advance for any help you might have for me!