一个css文件和html文件是怎么建立连接的?

 我来答
育知同创教育
2016-07-26 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部

一个css文件和html文件是通过动态导入到html页面建议联系的。

比如有一个外部css文件,header.css:

内容如下:

 body {  

            font-family: "黑体";  

            font-size: 12px;  

            color: #000;  

            margin: 0px;  

            text-align:center;  

            margin-left: 20px;  

            margin-top: 50px;  

            margin-right: 20px;  

            margin-bottom: 20px;}

    div#wrap {   

            width:800px;   

            margin:0 auto;   

            border:1px solid #333;  

            background-color:#ccc;  

            text-align:center;  

            background-image:url(images/bg_img04.jpg); }   

          

    div#header {  

            width:780px;  

            border:1px solid #333;  

            font-family: "宋体";  

            font-size: 14px;  

            color: #000;  

            text-align:center;  

            margin-left: 10px;  

            margin-top: 30px;  

            margin-right: 10px;  

            margin-bottom: 5px;}  

           

    div#footer{  

            width:780px;  

            border:1px solid #333;  

            font-family: "宋体";  

            font-size: 12px;  

            color: #000;  

            text-align:center;  

            margin-left: 10px;  

            margin-top: 30px;  

            margin-right: 10px;  

            margin-bottom: 8px; }  

      

      

    div#center{  

            width:780px;  

            border:1px solid #333;  

            font-family: "宋体";  

            font-size: 12px;  

            color: #000;  

            text-align:center;  

            margin:0 auto;   

            margin-left: 10px;  

            margin-top: 10px;  

            margin-right: 10px;  

            margin-bottom: 5px; 

            }  

  

    a {   

        font-size: 14px;   

        color: #000;  

        font-family:"黑体"; }  

      

    a:link {  

        text-decoration: underline;  

        color: #009;}  

      

    a:visited {  

        text-decoration: underline;  

        color: #306;}  

      

    a:hover {  

        text-decoration: none;  

        color: #900;}  

      

    a:active {  

        text-decoration: underline;  

        color: #36C;}  

2、html代码如下:

<html xmlns="http://www.w3.org/1999/xhtml">  

<head>  

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  

<title>CSS DIV 样式布局 III  头header   脚 footer  身 center </title>  

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

</head>    

<body>  

    <div id="wrap">   

        <table width="780" border="0" cellspacing="0" cellpadding="0">  

          <tr>  

            <td>  

                <div id="header">  

                    <p><a href="#"><strong>添加新的留言内容</strong></a></p>  

                    <p><strong>导航或标题</strong></p>  

                </div>  

            </td>  

          </tr>  

            

          <tr>  

            <td height="183" background="" >  

                <div id="center">  

                    ···················代码编辑区域······················  

                </div>  

            </td>  

            </tr>  

          <tr>  

            <td><div id="footer">Copyright © 2011 songyanjun, All Rights Reserved</div></td>  

          </tr>  

        </table>  

    </div>  

</body>  

</html>  

这样当页面运行后,对应的样式就会加载出来。

运行结果:

码上得道
2016-06-25 · 超过27用户采纳过TA的回答
知道答主
回答量:57
采纳率:0%
帮助的人:38.4万
展开全部
建立连接方式有几种
一、在head里用<link href="style.css" rel="stylesheet"/>
二、在style标签里用@import url(demo.css )
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
桃子的幸福on
2016-07-08 · 知道合伙人互联网行家
桃子的幸福on
知道合伙人互联网行家
采纳数:1044 获赞数:2229
在校计算机专业学生

向TA提问 私信TA
展开全部
<!--<link rel="stylesheet" type="text/css" href="css文件位置">-->

在需要建立连接的html文件头部加入此语句即可

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bjiangzhou
2016-06-25 · TA获得超过105个赞
知道小有建树答主
回答量:161
采纳率:0%
帮助的人:110万
展开全部
在HTML的head部分通过link标签引入css样式文件。
<link href="style.css" rel="stylesheet"/>
href为样式文件地址!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式