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

Save Automatically?

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

              
                <div class="container">  
  <div class="row">
    <div class="column">
      <div class="my-content"></div>
    </div>
    <div class="column">
      <div class="my-content"></div>
    </div>
    <div class="column">
      <div class="my-content"></div>
    </div>
  </div>
</div>

<div>Column width: <span id="output"></span>px</div>
              
            
!

CSS

              
                .column {
  float: left;
  box-sizing: border-box;
  width: 33.3333333%;
  padding: 0 4px;
}

.container {
  padding: 8px 3%;
  background-color: gray;
}

.row {
  margin-left: -8px;
  margin-right: -8px;
  overflow: hidden;
}

.my-content {
  height: 40px;
  background-color: rgb(220, 220, 220);
}
              
            
!

JS

              
                var HAS_COMPUTED_STYLE = !!window.getComputedStyle;
var getStyles = window.getComputedStyle || function() {};

var COMPUTED_SIZE_INCLUDES_PADDING = (function() {
  if (!HAS_COMPUTED_STYLE) {
    return false;
  }

  var parent = document.body || document.documentElement;
  var e = document.createElement('div');
  e.style.cssText = 'width:10px;padding:2px;' +
    '-webkit-box-sizing:border-box;box-sizing:border-box;';
  parent.appendChild(e);

  var width = getStyles(e, null).width;
  var ret = width === '10px';

  parent.removeChild(e);

  return ret;
}());

/**
 * Retrieve the computed style for an element, parsed as a float.
 * @param {Element} element Element to get style for.
 * @param {string} style Style property.
 * @param {CSSStyleDeclaration} [styles] Optionally include clean styles to
 *     use instead of asking for them again.
 * @return {number} The parsed computed value or zero if that fails because IE
 *     will return 'auto' when the element doesn't have margins instead of
 *     the computed style.
 */
var getNumberStyle = function(element, style, styles) {
  if (HAS_COMPUTED_STYLE) {
    styles = styles || getStyles(element, null);
    var value = getFloat(styles[style]);

    // Support IE<=11 and W3C spec.
    if (!COMPUTED_SIZE_INCLUDES_PADDING && style === 'width') {
      value += getFloat(styles.paddingLeft) +
        getFloat(styles.paddingRight) +
        getFloat(styles.borderLeftWidth) +
        getFloat(styles.borderRightWidth);
    } else if (!COMPUTED_SIZE_INCLUDES_PADDING && style === 'height') {
      value += getFloat(styles.paddingTop) +
        getFloat(styles.paddingBottom) +
        getFloat(styles.borderTopWidth) +
        getFloat(styles.borderBottomWidth);
    }

    return value;
  } else {
    return getFloat($(element).css(style));
  }
};

var isNumber = function(n) {
	return !isNaN(parseFloat(n)) && isFinite(n);
}

var getFloat = function(value) {
  value = parseFloat(value);
  return isNumber(value) ? value : 0
};

function showWidth() {
  var output = document.querySelector('#output');
  var column = document.querySelector('.column');
  output.textContent = getNumberStyle(column, 'width');
}

window.addEventListener('resize', showWidth);

showWidth();
              
            
!
999px

Console