{"data":{"type":"contents","id":"concepts/wells","attributes":{"html":"<h1 id=\"wells\">Wells</h1>\n<p>Wells provide a box to wrap images that should be presented on a background, most likely because they have transparency.</p>\n<pre><code class=\"html language-html\">&lt;!-- Note: p-2 and m-2 are spacer helpers and not relevant to the example --&gt;\n&lt;div class=\"well p-2 m-2\"&gt;\n  Hello World\n&lt;/div&gt;\n</code></pre>\n<p>They also come in multiple ratios and ensure that a contained image is resized to fill the space appropriatly.</p>\n<pre><code class=\"html language-html\">&lt;div class=\"layout\"&gt;\n  &lt;div class=\"sm:col-2 lg:col-2 p-2\"&gt;\n    &lt;h3&gt;Ratio 1:1&lt;/h3&gt;\n    &lt;div class=\"well well-1/1\"&gt;\n      &lt;img src=\"/ember-logo.png\" alt=\"Ember.js\" /&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n  &lt;div class=\"sm:col-2 lg:col-2 p-2\"&gt;\n    &lt;h3&gt;Ratio 4:3&lt;/h3&gt;\n    &lt;div class=\"well well-4/3\"&gt;\n      &lt;img src=\"/ember-logo.png\" alt=\"Ember.js\" /&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n  &lt;div class=\"sm:col-2 lg:col-2 p-2\"&gt;\n    &lt;h3&gt;Ratio 16:9&lt;/h3&gt;\n    &lt;div class=\"well well-16/9\"&gt;\n      &lt;img src=\"/ember-logo.png\" alt=\"Ember.js\" /&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n&lt;/div&gt;\n</code></pre>\n<p>Wells can be applied to anchors and work well with HTML <code>&lt;figure&gt;</code> elements.</p>\n<pre><code class=\"html language-html\">&lt;div class=\"layout\"&gt;\n  &lt;div class=\"sm:col-2 lg:col-2 p-2\"&gt;\n    &lt;figure&gt;\n      &lt;div class=\"well well-16/9\"&gt;\n        &lt;img src=\"/ember-logo.png\" alt=\"Ember.js\" /&gt;\n      &lt;/div&gt;\n      &lt;figcaption&gt;\n        A well thought out caption to add more information to the image above\n      &lt;/figcaption&gt;\n    &lt;/figure&gt;\n  &lt;/div&gt;\n  &lt;div class=\"sm:col-2 lg:col-2 p-2\"&gt;\n    &lt;figure&gt;\n      &lt;a href=\"#\" class=\"well well-16/9\"&gt;\n        &lt;img src=\"/ember-logo.png\" alt=\"Ember.js\" /&gt;\n      &lt;/a&gt;\n      &lt;figcaption&gt;\n        Using an anchor for the well works, too. You may want to add an additional link to the text\n        and or make sure this becomes clear from the context.\n      &lt;/figcaption&gt;\n    &lt;/figure&gt;\n  &lt;/div&gt;\n&lt;/div&gt;\n</code></pre>","content":"# Wells\n\nWells provide a box to wrap images that should be presented on a background, most likely because they have transparency.\n\n```html\n<!-- Note: p-2 and m-2 are spacer helpers and not relevant to the example -->\n<div class=\"well p-2 m-2\">\n  Hello World\n</div>\n```\n\nThey also come in multiple ratios and ensure that a contained image is resized to fill the space appropriatly.\n\n```html\n<div class=\"layout\">\n  <div class=\"sm:col-2 lg:col-2 p-2\">\n    <h3>Ratio 1:1</h3>\n    <div class=\"well well-1/1\">\n      <img src=\"/ember-logo.png\" alt=\"Ember.js\" />\n    </div>\n  </div>\n  <div class=\"sm:col-2 lg:col-2 p-2\">\n    <h3>Ratio 4:3</h3>\n    <div class=\"well well-4/3\">\n      <img src=\"/ember-logo.png\" alt=\"Ember.js\" />\n    </div>\n  </div>\n  <div class=\"sm:col-2 lg:col-2 p-2\">\n    <h3>Ratio 16:9</h3>\n    <div class=\"well well-16/9\">\n      <img src=\"/ember-logo.png\" alt=\"Ember.js\" />\n    </div>\n  </div>\n</div>\n```\n\nWells can be applied to anchors and work well with HTML `<figure>` elements.\n\n```html\n<div class=\"layout\">\n  <div class=\"sm:col-2 lg:col-2 p-2\">\n    <figure>\n      <div class=\"well well-16/9\">\n        <img src=\"/ember-logo.png\" alt=\"Ember.js\" />\n      </div>\n      <figcaption>\n        A well thought out caption to add more information to the image above\n      </figcaption>\n    </figure>\n  </div>\n  <div class=\"sm:col-2 lg:col-2 p-2\">\n    <figure>\n      <a href=\"#\" class=\"well well-16/9\">\n        <img src=\"/ember-logo.png\" alt=\"Ember.js\" />\n      </a>\n      <figcaption>\n        Using an anchor for the well works, too. You may want to add an additional link to the text\n        and or make sure this becomes clear from the context.\n      </figcaption>\n    </figure>\n  </div>\n</div>\n```"}}}