Java教程

javascript中html当中如何引用css文件

本文主要是介绍javascript中html当中如何引用css文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.html当中如何引用css文件
马克-to-win:css:Cascading Style Sheets

例 1.1

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<!-- LINK.rel (Property)
The relationship between the current element and the remote document.  -->
<link href="outer.css" rel="stylesheet">
</head>
<body>
<table width="190" height="80" border="2" >
  <tr>
    <td >张三</td>
  </tr>
  <tr>
    <td>qixy</td>
  </tr>
  <tr>
    <td>李四</td>
  </tr>
  <tr>
    <td>王五</td>
  </tr>
</table>
</body>
</html>


outer.css:

table {
    background-color: #0000ff;

}
td {
/*the following statement make the border to show, because of the different color.*/
    background-color: #FF0000;

}

更多内容请见原文,文章转载自:https://blog.csdn.net/qq_43650923/article/details/102242672

这篇关于javascript中html当中如何引用css文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!