krv
krv

Reputation: 2920

Dev tools for media query break points?

I have been coding responsive designs and have been looking at responsiveness on the websites that I visit.

I was wondering whether there is any way I can take a look at what width the site has set break point using the dev-tools?

Upvotes: 1

Views: 59

Answers (1)

DreamTeK
DreamTeK

Reputation: 34217

Yes simply use the browsers developer (F12) tools and look at the media queries in css. Provided this is where they have specified thier breaks.

Look at the @media rules in the stylesheet editor.

Firefox example

enter image description here

Upvotes: 1

Related Questions