CSS

how to inherit font size from main page style

How many times you needed to use a regular fixed font for the page via CSS and use a relative font size on other content blocks : well the CSS way to do this is to set the main page style font size :
.main {
font size:15px;
}
And then add relative size to other elemnts:
.content_tilte {
font-size:small;
}
document.getElementById(“post-218-blankimage”).onload();


CSS ותאימות ל Firefox

כחברה שעוסקת בפיתוח אתרים , אתם נתקלים ביום יום בבעיות תאימות בין אקספלורר  7 לפיירפוקס 3 . בעיה מאד בסיסית שגרמה לי לא לישון בלילה היא נושא המרווח בפקודת margin .  פקודה זו מבטאת את המרווח החיצוני  בין האלמנט עליו היא נמצאת לאלמנט מאותו כיוון (למשל margin-let יתייחס לשוליים משמאל).
משום מה – פיירפוקס מתעלם מזה [...]