【每日日报】第四十六天

1 继续学习css

内部样式表

<head>
<style type="text/css">
body {background-color:yellow;}
p {color:blue;}
</style>
</head>

外部样式表

<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>

表格

<table border="1">
    <tr>
        <td>row 1, cell 1</td>
        <td>row 1, cell 2</td>
    </tr>
    <tr>
        <td>row 2, cell 1</td>
        <td>row 2, cell 2</td>
    </tr>
</table>

 

2 没问题

3 明天继续

posted @ 2020-08-20 10:09  我试试这个昵称好使不  阅读(81)  评论(0编辑  收藏  举报