返回首页
返回样式
添加CSS的四种方法:
方法一:链接外部样式表
<head>
<link rel=stylesheet type="text/css" href="style.css">
</head>
方法二:内部样式表
<head>
<style type="text/css">
body{
margin-left:0px;
margin-top:0px;
margin-right:0px;
margin-bottom:0px;
}
.style1
color: #fbe334
font-size: 13px
</style>
<head/>
方法三:导入外部样式表
<head>
<style type="text/css">
@import style.css
</style>
</head>
方法四:内嵌样式
<table style=color:red; margin-right;220px>