CSS三种模式
CSS的三种模式
第一种行内式
<caption><h4 style="color: deeppink; font-size: 25px;">何以解忧?多半只有暴富了</h4></caption>
第二种内样式
<style>
th {
color: forestgreen;
}
td{
font-size: 14px;
}
tr{
height: 30px;
text-align: center;
}
</style>
第三种外链
<link rel="stylesheet" href="style1.css">