一切都在我的笔记本电脑上完美运行,并在调整大小等时在浏览器上渲染得很好。我已经上传了所有文件,并尝试在我的手机和平板电脑上进行测试,但我的css表似乎没有被选中起来。我的标题是:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://localhost/mrfcredesign/public/css/mrfc.css"/>
</head>
任何人都可以帮助我的理智吗?
答案 0 :(得分:2)
localhost
与笔记本电脑上的本地主机不同 - 您需要将样式表上的href更改为相对链接(例如/css/mrfc.css
或类似),或者绝对链接到实际的服务器地址。