Files
ClassContent/历届学生/逯帅帅/项目开发/上课项目/css练习/css属性练习.html
2024-09-27 02:06:13 +08:00

76 lines
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
a {
font-size: 112px;
color: red;
font-weight: 600;
text-shadow: #9e9e9e 19px 32px 2px;
margin: 0;
}
.test {
background: #9e9e9e;
}
.border {
border-left: 10px solid yellow;
border-right: 10px solid #ff000000;
border-top: 10px solid #0000ff00;
border-bottom: 10px solid #00800000;
width: 0px;
height: 0px;
width: 0;
height: 0;
}
ul li {
}
.cursor {
cursor: pointer;
}
</style>
</head>
<body>
<a href="">测试font-size</a>
<p>
吴孟达的一生经历了不少波折,年少成名的他,曾在走红后迷上赌博而债台高筑,同行不愿意找“烂泥扶不上墙”的他拍戏,生活艰难之下他想过自杀,后在好友周润发的暗中帮助下拍戏还清了巨债。
1991年,凭着在《天若有情》中出色的表现,达叔拿到了人生第一个“最佳男配角”奖。
纵然吴孟达经典作品不少,但最令人难忘的应该是与周星驰合作的喜剧。
1989年,洗心革面后的吴孟达与刚出道的周星驰合演《盖世豪侠》和《他来自江湖》,两人惊人的默契以及让人捧腹大笑的表演受到不少观众的好评。
</p>
<div class="test">
background 练习
</div>
<div class="border">
</div>
<ul>
<li>ddd</li>
<li>ddd</li>
<li>ddd</li>
<li>ddd</li>
</ul>
<button class="cursor">cursor练习</button>
</body>
</html>