Line 10: | Line 10: | ||
<!-- END Scrollbox --> | <!-- END Scrollbox --> | ||
<style>@import 'https://fonts.googleapis.com/css?family=Love+Ya+Like+A+Sister';</style> | <style>@import 'https://fonts.googleapis.com/css?family=Love+Ya+Like+A+Sister';</style> | ||
+ | <script> | ||
+ | var docWidth = document.documentElement.offsetWidth; | ||
+ | |||
+ | [].forEach.call( | ||
+ | document.querySelectorAll('*'), | ||
+ | function(el) { | ||
+ | if (el.offsetWidth > docWidth) { | ||
+ | console.log(el); | ||
+ | } | ||
+ | } | ||
+ | ); | ||
+ | </script> | ||
</head> | </head> | ||
</html> | </html> |
Revision as of 16:09, 13 October 2016