Home > Web Front-end > HTML Tutorial > 关于css样式的问题_html/css_WEB-ITnose

关于css样式的问题_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:40:24
Original
1024 people have browsed it

<link rel="stylesheet" href="http://a.tbcdn.cn/p/fp/2012/fp/??layout.css,dpl/dpl.css,sitenav/sitenav.css,logo/logo.css/>
Copy after login


上述代码算不算一次性引入多个css样式表?

问题:为啥,我整的时候就不对呢


回复讨论(解决方案)

人呢?、、、

一次只能引入一个css文件,可以借助一个中间的css文件引入多个。



<link rel="stylesheet" href="/css/a.css" type="text/css">
Copy after login


a.css
<link rel="stylesheet" href="/css/b.css" type="text/css"><link rel="stylesheet" href="/css/c.css" type="text/css"><link rel="stylesheet" href="/css/c.css" type="text/css">
Copy after login


浏览器不识你的写法
成功的程序员都去把妹,或者陪老婆了...

一次只能引入一个css文件,可以借助一个中间的css文件引入多个。



XML/HTML code?1<link rel="stylesheet" href="/css/a.css" type="text/css">

a.css
XML/HTML code?123 你那个在css中引入css的方式我整了没用;
搜了一下,最后用如下方式引入

@import url("test1.css");@import url("test2.css");
Copy after login

正解
加班中...

正解
加班中...

引用 4 楼 datiexiong 的回复:正解
加班中...

一入码农深似海,问君能有几多愁,恰似一包报文向关流。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template