Imagine having 2 separate CSS files, desktop.css and ipad.css, both being used on the same HTML page.
In desktop.css, we have a pseudo div defined like this:
div.someClass{float:left;overflow:hidden;height:100px}
Now, if the user resizes the browser to iPad size and ipad.css is applied, what happens?
Do the properties from desktop.css still apply or are they completely replaced by the properties in ipad.css?
For example, if I want to change the overflow property to 'visible' in ipad.css, do I need to explicitly specify it? Or can I simply define it like this within ipad.css:
div.someClass{float:left;height:100px}
Will the default value of overflow: visible be automatically applied to the div?