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

              
                <link href='https://fonts.googleapis.com/css?family=Fira+Sans' rel='stylesheet' type='text/css'>

<p>Цей приклад показує як працює властивість <code>overflow-x</code>. Спробуйте вимкнути/ввімкнути перемикач, щоб змінити метод обобки переповнення контенту по горизонталі в блоці нижче.</p>

<div class="inputs">
  <input id="visible" checked name="overflow" type="radio"/>
  <label for="visible">visible</label>
  <message for="visible">Відображає ввесь вміст елемента, навіть вміст, що за межами елемента по ширині. Без задання.</message>
  
  <input id="hidden" name="overflow" type="radio"/>
  <label for="hidden">hidden</label>
  <message for="hidden">Відображається лише область всередині елемента, все, що поза межами контейнера буде обрізано.</message>
  
  <input id="scroll" name="overflow" type="radio"/>
  <label for="scroll">scroll</label>
  <message for="scroll">Смуги прокручування будуть завжди відображені.</message>
  
  <input id="auto" name="overflow" type="radio"/>
  <label for="auto">auto</label>
  <message for="auto">Смуги прокручування з'являються, тільки при необхідності</message>
</div>

<div class="wm">
  <p id="message">Відображає ввесь вміст елемента, навіть вміст, що за межами елемента по ширині. Без задання.</p>
</div>

<hr>

<div id="block">
  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
		tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
		quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
		consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
		cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
		proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
              
            
!

CSS

              
                * {
  box-sizing: border-box;
  padding: 0;
}

body {
  font-family: 'Fira Sans', sans-serif;
  overflow: hidden;
}

#block {
  margin-top: 25px;
  line-height: 1.45;
  width: 400px;
  overflow-x: visible;
  background-color: gold;
  padding: 4px;
  white-space: nowrap;
}

message {
  display: none;
}

.wm {
  min-height: 100px;
}
              
            
!

JS

              
                var $message = $('#message');

$('.inputs').find('input').on('change', function() {
  
  var $messageText = $("message[for='"+$(this).attr('id')+"']")
  $message.text($messageText.text());
  
  $('#block').css('overflow-x', $(this).attr('id'));
  
});

              
            
!
999px

Console