Skip to content

Commit

Permalink
Merge pull request #58 from lylsy0428/master
Browse files Browse the repository at this point in the history
#47 第2次实验~练习CSS
  • Loading branch information
zengsn authored Oct 11, 2017
2 parents b16295c + 4ffbe22 commit 4103161
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
37 changes: 37 additions & 0 deletions 1517060319/css-test.HTML
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>
8 changes: 8 additions & 0 deletions 1517060319/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
p {
color:blue;
}

.table-a {

border:1px solid #F00;
}

0 comments on commit 4103161

Please sign in to comment.