如何引用两个样式表
How to reference two stylesheets
我是 HTML 的新手,我正在尝试 href 2 件事。我没有收到错误,但我的 style.css sheet 不起作用。有什么想法吗?
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css; style.css">
分开做:
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
我是 HTML 的新手,我正在尝试 href 2 件事。我没有收到错误,但我的 style.css sheet 不起作用。有什么想法吗?
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css; style.css">
分开做:
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="style.css"/>