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 image-shape" src="https://fruntend.com/storage/photos/1/articles/kak-adaptirovat-tekst-pod-formu-plavayushchego-elementa/coca-cola.png" width="150" >
      История бутылки Coca-Cola - это история знакового дизайна и узнаваемости, который сделал Coca-Cola одним из самых узнаваемых брендов в мире. Вот краткая история иконической бутылки Coca-Cola.
<br>
В начале 20-го века, когда Coca-Cola стала популярным напитком, существовала проблема подделки и копирования бутылок. Чтобы справиться с этой проблемой и сделать свой продукт узнаваемым, компания Coca-Cola объявила конкурс на создание уникального дизайна бутылки. Основное требование было следующим: дизайн должен быть таким, чтобы было возможно узнать бутылку Coca-Cola, даже если она разбита и лежит в осколках. Конкурс выиграл дизайнер по имени Эрнест Вудрофф, работавший в рекламном агентстве Root Glass Company.
<br>
Эрнест Вудрофф создал бутылку с уникальной формой, которая напоминала кокаиновую бобу внутри, и которая получила имя "контурная бутылка". Этот дизайн стал знаковым для Coca-Cola.
<br>
В 1916 году дизайн контурной бутылки был патентован. Он был предназначен для использования только Coca-Cola. В этом же году новый дизайн бутылки был впервые использован.
<br>
Контурная бутылка стала символом Coca-Cola и стала иконой дизайна. Она обеспечила высокую узнаваемость бренда, даже без надписей. Этот дизайн бутылки считается одним из самых успешных икон в мире маркетинга и рекламы.
<br>
Контурная бутылка остается важной частью бренда Coca-Cola и используется по всему миру. Ее форма стала частью культуры и стиля.
    </div>
              
            
!

CSS

              
                .example-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: sans-serif;
  font-size: 20px;
/*   text-align: justify; */
}
.shaped-element {
  float: left;
}
.image-shape {
  width: 150px;
  shape-outside: url(https://fruntend.github.io/images/examples/coca-cola.png);
  padding: 0 30px;
  margin-left: -30px;
}
              
            
!

JS

              
                
              
            
!
999px

Console