我正在使用Cloud9 Ruby on rails创建一个项目。我在index.html.erb中只有一个css文件:
<!DOCTYPE html>
<html>
<head>
<title>Workspace</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>
我在Application.css中放了一个媒体查询:
@media only screen and (min-width: 290px) and (max-width: 640px) and (-webkit-device-pixel-ratio: 2) {
.container2 {
position:relative;
background-color:red;
text-align: center;
width:100%;
height:100%;
border-bottom-style: ridge;
border-top-style: ridge;
border-width:10px;
}
#list {
font-size: 50px;
}
}
如果您访问以下链接:https://todo-app-back-end-prospeed.c9users.io/?_c9_id=livepreview0&_c9_host=https://ide.c9.io,当.container2
达到600px时,您会看到topicId
没有变红。