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

              
                <div class="example-container">
      <img class="shaped-element circle-shape" src="https://fruntend.com/storage/photos/1/articles/kak-adaptirovat-tekst-pod-formu-plavayushchego-elementa/burger-king.png" width="150" >
      <strong>Burger King</strong> была основана в 1954 году в городе Майами, Флорида, Джеймсом Макламором и Дэвидом Эдгертоном. Первый ресторан Burger King назывался Insta-Burger King и был известен своей инновацией - гриль-машина для приготовления гамбургеров, которая позволяла готовить бургеры быстрее, чем большинство конкурентов. В 1957 году компания была переименована в просто "Burger King" и начала свое активное расширение. Она стала известной своими "Whopper" бургерами, которые стали их фирменным блюдом. Whopper отличался большим размером и неповторимым вкусом и стал одним из самых популярных бургеров в мире. 
Burger King также известен своей инновационной рекламой, включая знаменитого персонажа "Короля", который часто появляется в их телевизионных рекламах. История Burger King - это история о поиске инноваций в быстром питании, создании иконических блюд и стремлении к мировому признанию. Сегодня Burger King имеет тысячи ресторанов по всему миру и продолжает радовать своих клиентов разнообразными бургерами и закусками.
    </div>
              
            
!

CSS

              
                .example-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: sans-serif;
  font-size: 20px;
  text-align: justify;
}
.shaped-element {
  float: right;
}
.circle-shape {
  width: 200px;
  height: 200px;
  shape-outside: circle(105px);
  margin: 36px 0px 36px 36px;
}
              
            
!

JS

              
                
              
            
!
999px

Console