使用者
伺服器
請求(GET、POST、DELETE......)
回應(HTML、JSON、text......)
<html>
<head>
</head>
<body>
<h1> Hello World! </h1>
<p> Hello どうも ぼく は ここ </p>
</body>
</html>
<html>
<head>
<body>
<h1>
<p>
<html>
<head>
</head>
<body>
<h1> Hello World! </h1>
<p> Hello どうも ぼく は ここ </p>
<a href="https://lili668668.github.io">私 は ballfish です</a>
</body>
</html>
h1
<html>
<head>
</head>
<body>
<h1> Hello World! </h1>
<h1 class="ha owo"> Hello World! with class two </h1>
<h1 class="ha"> Hello World! with class ha </h1>
<h1 class="owo"> Hello World! with class owo </h1>
<p> Hello どうも ぼく は ここ </p>
<a href="https://lili668668.github.io">私 は ballfish です</a>
</body>
</html>
h1.owo
<html>
<head>
</head>
<body>
<h1> Hello World! </h1>
<h1 class="ha owo"> Hello World! with class two </h1>
<h1 class="ha"> Hello World! with class ha </h1>
<h1 class="owo"> Hello World! with class owo </h1>
<p id="here"> Hello どうも ぼく は ここ </p>
<p id="there"> Hello どうも ぼく は そこ </p>
<a href="https://lili668668.github.io">私 は ballfish です</a>
</body>
</html>
p#there
<html>
<head>
</head>
<body>
<h1 id="OAO">
<a href="https://google.com">I'm here</a>
<p>, Not <a href="http://yahoo.com.tw">there</a> </p>
<p>, Also Not <a href="http://github.com">there</a> </p>
</h1>
</body>
</html>
h1#OAO a
<html>
<head>
</head>
<body>
<h1 id="OAO">
<a href="https://google.com">I'm here</a>
<p>, Not <a href="http://yahoo.com.tw">there</a> </p>
<p>, Also Not <a href="http://github.com">there</a> </p>
</h1>
</body>
</html>
h1#OAO > a
<html>
<head>
</head>
<body>
<h1 id="OAO">
<a href="https://google.com">I'm here</a>
<p>, Not <a href="http://yahoo.com.tw">there</a> </p>
<p>, Also Not <a href="http://github.com">there</a> </p>
</h1>
</body>
</html>
h1#OAO > p:nth-child(2) > a
其它的可以去玩遊戲,學更多(・ω・)
http://toolness.github.io/css-selector-game/
或看文件(・∀・)
https://developer.mozilla.org/zh-TW/docs/Web/CSS/CSS_Selectors