Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Align images with line-height" />
  <meta charset="utf-8">
  <title>JS Bin</title>
  <style>
  html {
    font: 1em sans-serif;
  }
  </style>
</head>
<body>
  <h1>Good design</h1>
  <p><span>We try to best possible. There's no such thing: hierarchical, well, but you don't see profoundly to the point of design is honest approach and an innate part? It really is very utilitarian. Good design will be different levels. <img src="http://lorempixel.com/300/300/abstract/1" alt="" >Typography pencil paper prototype resolution eye tracking. Resolution color theory interstitial gradient visualization. Retina pattern vector brainstorm. Storyboard mockup glyph alan cooper pattern. Sitemap lightbox contrast rule of thirds grid. Measure information architecture. Modern user experience keep it simple hierarchy. <img src="http://lorempixel.com/300/300/abstract/3" alt="" >Card-sorting iconography accessibility information architecture. Visuals IDEO brainstorm tabs. Leading constraints experience header. Abstraction contrast iconography simplicity adobe. CSS serif interactive. Pencil kerning ligature gestalt sitemap. Eye tracking balsamiq. Walkthrough sketches comic sans modular scale. Iteration mental model simplicity. Usable classical conditioning workflow. Css3 type kerning. Branding kerning. CSS pattern figure-ground visualization.</span></p>
</body>
</html>
 
:root {
  /*font-size*/
  --fz: 16px;
  /*number of lines per images*/
  --nbL: 3;
  /*line-height you want*/
  --lh: 2rem;
  /*content-area of the specified font at a specified height*/
  --content-area: 1.25em;
  /*leading && half-leading*/
  --L: (var(--lh) - var(--content-area));
  --hL: (var(--L) / 2);
  /*ascent && ascent ratio*/
  --ascent-ratio: 1;
  --ascent: (var(--fz) * var(--ascent-ratio) + var(--hL));
}
/* Values of differents fonts
Font: size, span-height, ascent ratio
Raleway: 16px, 1.25em, 1
Playbill: 20px, 1.05em, .875
Comic sans ms, 16px, 1.438em, 1.125
Viner Hand ITC, 20px, 1.65em, 1
*/
body {
  max-width: 40em;
  margin: auto;
  line-height: var(--lh);
}
h1 {
  line-height: calc(var(--lh) * 3);
  margin: var(--lh) 0;
}
p{
  font-family: Raleway, Playbill,sans-serif;
  font-size: var(--fz);
}
img {
  float: left;
  width: auto;
  height: calc(((var(--nbL) - 1) * var(--lh)) + 1ex);
  
  margin-top: calc(var(--ascent) - 1ex);
  margin-right: 1em;
}
img:last-of-type {
  --nbL: 5;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
iamvdopro
0viewers