Open ryou opened 6 years ago
デフォルトline-heightは難しいという話になりそう
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
font-size: 14px;
line-height: 1.7;
padding: 20px;
}
.outer {
display: inline-block;
background: #ccc;
}
.inner {
display: inline-block;
font-size: 16px;
line-height: 1.5;
background: #777;
}
</style>
</head>
<body>
<p><span class="outer">x<span class="inner">x</span></span></p>
</body>
</html>
これでもいい
以下のソースがChromeでinline-blockなspanの高さが25pxになるのはなぜか調べて (Safariだと24px)