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

              
                <button class="hoverMe">Hover Me</button>
<!-- Put this code anywhere in the body of your page where you want the badge to show up. -->

<div itemscope itemtype='http://schema.org/Person' class='fiverr-seller-widget' style='display: inline-block;'>
     <a itemprop='url' href=https://www.fiverr.com/shahjehanali rel="nofollow" target="_blank" style='display: inline-block;'>
        <div class='fiverr-seller-content' id='fiverr-seller-widget-content-94f33aa0-44d9-4658-ad59-a66eafc31b38' itemprop='contentURL' style='display: none;'></div>
        <div id='fiverr-widget-seller-data' style='display: none;'>
            <div itemprop='name' >shahjehanali</div>
            <div itemscope itemtype='http://schema.org/Organization'><span itemprop='name'>Fiverr</span></div>
            <div itemprop='jobtitle'>Seller</div>
            <div itemprop='description'>I'm Front-end Developer, Have more than 4 years.
*Experience on front End Development,*

*Programming Languages & Technologies:*
HTML CSS jQuery JavaScipt.     

*Development environments:*->
Sublime text, Grunt, Gulp

*Frameworks:*->
WordPress

*Skills:*->
PSD2html, Email Templates, MailChimp, Ai to PSD, Bug Fixing and W3C validation, Gif animation, HTML5 Animation, HTML5 ads. Woocommerce</div>
        </div>
    </a>
</div>

<script id='fiverr-seller-widget-script-94f33aa0-44d9-4658-ad59-a66eafc31b38' src='https://widgets.fiverr.com/api/v1/seller/shahjehanali?widget_id=94f33aa0-44d9-4658-ad59-a66eafc31b38' data-config='{"category_name":"Programming \u0026 Tech"}' async='true' defer='true'></script>
              
            
!

CSS

              
                body {
  background: magenta;
}

.hoverMe {
  background: #e600e5;
  height: 40px;
  width: 200px;
  border: 0;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  vertical-align: top;
}

.hoverMe:after {
  background: #fff;
  height: 40px;
  width: 100%;
  border: 0;
  color: magenta;
  border: 1px solid #e600e5;
  text-align: center;
  content: 'Hover Me';
  display: block;
  position: absolute;
  top: -110%;
  left: -1px;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
}

.hoverMe:hover:after {
  position: absolute;
  top: -1px;
  left: -1px;
}
              
            
!

JS

              
                
              
            
!
999px

Console