Created
February 10, 2013 09:47
-
-
Save to/4748997 to your computer and use it in GitHub Desktop.
iOSで以下ファイルをホーム画面にアプリとして置き開くと、テキストのスタイルがリンクのように下線が付き青色になる。中のテキストを0、10、20など以外に変えると発生しない。また30や0を削り3つにしても発生しない。Safariで普通に開くと装飾なしのテキストが表示される。
This file contains hidden or 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> | |
<head> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
</head> | |
<body> | |
<div style="display: inline-block;">0</div><div style="display: inline-block;">10</div><div style="display: inline-block;">20</div><div style="display: inline-block;">30</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment