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

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

<p>У цьому прикладі, ми можемо змінювати напрямок символів у вертикально надрукованому тексті.</p>

<div class="inputs">
  <input id="mixed" checked name="text-orientation" type="radio"/>
  <label for="mixed">mixed</label>
  <message for="mixed">​Поворот символів на 90°. Без задання.</message>
  
  <input id="upright" name="text-orientation" type="radio"/>
  <label for="upright">upright</label>
  <message for="upright">Показує горизонтальні символи природно (вертикально), а також гліфи для них.</message>
  
  <input id="sideways" name="text-orientation" type="radio"/>
  <label for="sideways">sideways</label>
  <message for="sideways">Весь текст буде накладено в бік (повернутий на 90° за годинниковою стрілкою), як у горизонтальному розташуванні.</message>
</div>

<p id="message">​Поворот символів на 90°. Без задання.</p>

<hr>

<p id="block">Це текст. Просто текст для прикладу.</p>
              
            
!

CSS

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

body {
  font-family: sans-serif;
}

#block {
  font-size: 1.75em; 
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

message {
  display: none;
}
              
            
!

JS

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

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

              
            
!
999px

Console