-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from lylsy0428/master
#47 第2次实验~练习CSS
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<link rel="stylesheet" href="style.css"> | ||
<style type="text/css"></style> | ||
<head> | ||
<title>HELLO Lin</title> | ||
</head> | ||
<body> | ||
<p>这是一个练习1</p> | ||
|
||
<div class="test" style="color:#0000FF"> | ||
<p>这是一个css练习</p> | ||
</div> | ||
|
||
<div class="table-a"> | ||
<table width="400" border="0" cellspacing="0" cellpadding="0"> | ||
<tr> | ||
<td width="105">第一个</td> | ||
<td width="181">第二个</td> | ||
<td width="112">第三个</td> | ||
</tr> | ||
<tr> | ||
<td>A</td> | ||
<td>B</td> | ||
<td>C</td> | ||
</tr> | ||
<tr> | ||
<td>AAA</td> | ||
<td>BBB</td> | ||
<td>CCC</td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
p { | ||
color:blue; | ||
} | ||
|
||
.table-a { | ||
|
||
border:1px solid #F00; | ||
} |