Skip to content

Instantly share code, notes, and snippets.

@sfpgmr
Created January 30, 2020 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sfpgmr/e4be2f14addf1bc61d5f6cf9eb76b204 to your computer and use it in GitHub Desktop.
Save sfpgmr/e4be2f14addf1bc61d5f6cf9eb76b204 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<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>CSS詳細度テスト</title>
<style>
* {
font-size:10px;
color:red;
}
h1 {
font-size:20px;
color:blue;
}
div {
color:green;
}
</style>
</head>
<body>
<h1>テストタイトル</h1>
<div>テスト</div>
<p>テスト</p>
<span>aaaaa</span>
<svg width="100" height="100">
<text x="0" y="35" font-family="Verdana" font-size="35pt">
Hello, out there
</text>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment