Skip to content

Instantly share code, notes, and snippets.

@to
Created February 10, 2013 09:47
Show Gist options
  • Save to/4748997 to your computer and use it in GitHub Desktop.
Save to/4748997 to your computer and use it in GitHub Desktop.
iOSで以下ファイルをホーム画面にアプリとして置き開くと、テキストのスタイルがリンクのように下線が付き青色になる。中のテキストを0、10、20など以外に変えると発生しない。また30や0を削り3つにしても発生しない。Safariで普通に開くと装飾なしのテキストが表示される。
<!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