View Single Post
Old 11-17-2012, 10:22 PM   PM User | #5
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,587
Thanks: 5
Thanked 864 Times in 841 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
Sounds like it. But you can also put some element with a certain width kind of as ruler into the page to see how the stylesheet changes with which size. For example put a div with a width a height of 10px and some background color so you actually see it, and then set a width on it in different media query rules, like:
Code:
@media only screen and (min-width : 860px) {
  #example {width: 860px;}
}
@media only screen and (min-width : 1280px) {
  #example {width: 1280px;}
}
You will then probably see it changing when the specific minimum width is reached.
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote