Disable stylesheet
Disable style is an easy way to see if content is in the right order. Does the content still make sense.
Firefox
- Menu
- View - Page Style - No Style
Chrome
See Edge of Install plug-in like Web Developer extension.
Edge
- Press F12
- Go to tab: Console
- Paste next code
( [].slice.call( document.styleSheets ) ).map( function ( style ) {
var node = style.ownerNode;
node.parentNode.removeChild( node );
} );