naked.js
show off your style
> hello web surfer > what would the internet feel like if sites were more naked? > and you could see the sizes of divs > wouldn't that be kind of rad? > ...like a transparent 1990s computer > naked.js adds a responsive border to a div. It shows off the width and height > https://github.com/jjkaufman/naked.js jjkaufman exited with 0
Example

The following is the html source code for this page.

Oberserve the selective usuage of the "naked" CSS class.

Only divs with the naked class get the custom border. <html> <head> <link rel="stylesheet" type="text/css" href="index.css" /> </head> <body> <div class="floater"> <div class="logo"> </div> <div class="naked header"> naked.js <div class="sub-header"> show off your style </div> </div> </div> <div class="naked floater inspiration"> > hello web surfer ... ... </div> <div class="naked clear void"> <u>Example</u> The following is the html source code for this page. ... ... </div> <script src="naked.js"></script> </body> </html>