CSS--輪郭
650 ワード
CSSプロファイルは、描画要素の周囲の線であり、枠線の縁の外周に位置します.
アウトライン属性は、要素の輪郭のスタイル、色、幅などを規定します.
アウトライン属性は、要素の輪郭のスタイル、色、幅などを規定します.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title> This is my HTML</title>
<style type="text/css">
/***solid 、thin 、red ***/
/***dotted 、thick ***/
p {border: solid thin red;
outline: #00ff00 dotted thick;
}
</style>
</head>
<body>
<p>
, 、 。
</p>
</body>
</html>