Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
 <h1>Highlighting images lacking an alt tag</h1>
  <p>This can be tested using just a bit of css. I wouldn't make this a permanent part of my stylesheet, but it could be added to the bottom of the style sheet before a project is launched just to see if all of my images have alt tags.</p>
  <p>To do this, the style sheet will create a black border around all images with an alt tag present. Next, it will create a red border around any images that don't have an alt tag. The css code to do this is:</p>
  <pre>img[alt] {border: solid 5px black;}
img {border:solid 5px red;}</pre>
   <h2>This is an image with an alt tag:</h2>
  <p>It should have a black border that is 5px thick.</p>
  <img src="http://kelliwise.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-14-at-12.01.15-PM-300x170.png" alt="image with alt tag" />
  <hr />
  <h2>This is an image without an alt tag:</h2>
  <p>It should have a red border that is 5px thick.</p>
    <img src="http://kelliwise.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-14-at-12.01.15-PM-300x170.png" />
  
              
            
!

CSS

              
                h2 {clear:both; color:blue;}

img {border:solid 5px red;}
img[alt] {border: solid 5px black;}

              
            
!

JS

              
                
              
            
!
999px

Console