Created
September 3, 2019 08:42
-
-
Save azusa-tomita/69f68ff943286603c13ce980f2f69f14 to your computer and use it in GitHub Desktop.
// source https://jsbin.com/biyusil
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title></title> | |
<style id="jsbin-css"> | |
input{ | |
font-size:20px; | |
line-height:1.2; | |
border:1px solid #ccc; | |
border-radius:0; | |
width:100px; | |
} | |
.h { | |
font-family: 'Hiragino Kaku Gothic ProN'; | |
} | |
.out0:focus { | |
outline: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>iOS inputにヒラギノ且つ:focus{outline:0}にしてると2文字目からgとかの下部分が欠ける</h1> | |
<p>font未指定 : <input type="text" class="n out0"></p> | |
<p>ヒラギノ : <input type="text" class="h out0"></p> | |
<script id="jsbin-source-css" type="text/css">input{ | |
font-size:20px; | |
line-height:1.2; | |
border:1px solid #ccc; | |
border-radius:0; | |
width:100px; | |
} | |
.h { | |
font-family: 'Hiragino Kaku Gothic ProN'; | |
} | |
.out0:focus { | |
outline: 0; | |
}</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input{ | |
font-size:20px; | |
line-height:1.2; | |
border:1px solid #ccc; | |
border-radius:0; | |
width:100px; | |
} | |
.h { | |
font-family: 'Hiragino Kaku Gothic ProN'; | |
} | |
.out0:focus { | |
outline: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment