- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这里是编码初学者。我正在尝试为我的移动设备网站设置断点,以便我的网站适合小屏幕。我只是想检查如果我缩小视口(viewport)的宽度,背景颜色是否会改变,但没有发生任何变化。也许我只是对一个简单的错误视而不见?
body {
margin: 0;
background-color: #4f4d4d;
overflow-x:hidden;
width: 100%;
height: auto;
}
ul {
margin-top: -80px;
list-style-type: none;
}
li {
font-size: 25px;
float: right;
font-weight: bold;
}
li a {
display: block;
text-decoration: none;
text-align: center;
font-family: sans-serif;
color: white;
border-left: 1px solid white;
padding: 23px;
}
li a:visited {
text-decoration: none;
color: white;
font-family: sans-serif;
}
li a:hover:not(.active) {
background-color: #333;
}
#header {
position: relative;
width: 100%;
height: 875px;
background-image: url(../images/bg.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
}
#nav {
width: 100%;
height: 75px;
background-color: black;
}
#logo {
width: 75px;
height: 75px;
}
#logo_text {
position: absolute;
display: inline;
top: -10px;
left: 80px;
font-size: 30px;
font-family: sans-serif;
color: white;
font-weight: bold;
}
#welcome_text_div {
position: absolute;
width: 1000px;
height: 300px;
top: 25%;
left: 0;
right: 0;
margin: auto;
}
#welcome_text {
color: white;
font-family: sans-serif;
text-transform: uppercase;
font-weight: bold;
font-size: 90px;
text-align: center;
}
#welcome_under_text {
color: white;
font-family: sans-serif;
text-align: center;
font-weight: bold;
margin-top: -80px;
font-size: 25px;
}
#alumni_div {
position: relative;
height: 800px;
width: 95%;
margin-right: auto;
margin-left: auto;
top: 100px;
margin-bottom: 50px;
}
.alumni_link:link {
text-decoration: none;
}
.alumni_link:visited {
color: white;
}
.alumni_link:hover {
color: grey;
}
#alumni_1 {
position: absolute;
width: 25%;
height: 100%;
background-color: black;
right: 77%;
}
#alumni_2 {
position: absolute;
width: 25%;
height: 100%;
background-color: blue;
right: 51%;
}
#alumni_3 {
position: absolute;
width: 25%;
height: 100%;
background-color: red;
left: 50.5%;
}
#alumni_4 {
position: absolute;
width: 25%;
height: 100%;
background-color: orange;
left: 77%;
}
.alumni_text {
font-family: sans-serif;
font-weight: bold;
font-size: 35px;
margin-top: 300px;
color: white;
text-align: center;
}
.graduate_text {
font-family: sans-serif;
font-weight: bold;
font-size: 20px;
color: white;
text-align: center;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CLC Website</title>
<link rel="stylesheet" href="main1.css">
<link rel="stylesheet" media="mediatype and|not|only (media feature)" href="mystylesheet2.css">
</head>
<body>
<div id="header">
<div id="nav">
<img src="../images/logo.png" id="logo" alt="logo">
<p id="logo_text">CLC</p>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Professors</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Home</a></li>
</ul>
</div><!--/nav-->
<div id="welcome_text_div">
<p id="welcome_text">The Best Offer</p>
<p id="welcome_under_text">Truth evades a single definition and true understanding requires a comparative perspective</p>
</div><!--/welcome_text_div-->
</div><!--/header-->
<div id="alumni_div">
<div id="alumni_1">
<a href="#" class="alumni_link"><p class="alumni_text">Alumni Name <br> Class of 15</p><p class="graduate_text">Graduate School</p></a>
</div>
<div id="alumni_2">
<a href="#" class="alumni_link"><p class="alumni_text">Alumni Name <br> Class of 14</p><p class="graduate_text">Company A</p></a>
</div>
<div id="alumni_3">
<a href="#" class="alumni_link"><p class="alumni_text">Alumni Name <br> Class of 13</p><p class="graduate_text">Company B</p></a>
</div>
<div id="alumni_4">
<a href="#" class="alumni_link"><p class="alumni_text">Alumni Name <br> Class of 12</p><p class="graduate_text">Company C</p></a>
</div>
</div><!--/alumni_div-->
</body>
</html>
@media only screen and (max-width: 1024px) {
body {
margin: 0;
background-color: white;
overflow-x:hidden;
width: 100%;
height: auto;
}
}
@media only screen and (max-width: 767px) {
body {
margin: 0;
background-color: red;
overflow-x:hidden;
width: 100%;
height: auto;
}
}
@media only screen and (max-width: 480px) {
body {
margin: 0;
background-color: blue;
overflow-x:hidden;
width: 100%;
height: auto;
}
}
最佳答案
括号不见了,更像这样:
@media only screen and (max-width: 1024px) {
body {
margin: 0;
background-color: white;
overflow-x:hidden;
width: 100%;
height: auto;
}
}
@media only screen and (max-width: 767px) {
body {
margin: 0;
background-color: red;
overflow-x:hidden;
width: 100%;
height: auto;
}
}
@media only screen and (max-width: 480px) {
body {
margin: 0;
background-color: blue;
overflow-x:hidden;
width: 100%;
height: auto;
}
}
关于html - 我的媒体查询不起作用。包括元标记;链接 rel 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36086707/
似乎最近我看到越来越多的人开始在他们的样式表中使用 media="all" 而不是 media="screen"。 我的问题是什么时候应该使用 media="all" 而不是 media="scree
我正在尝试使用 https://www.instagram.com/developer/endpoints/media/ ,但对于我使用的每个媒体 ID,我总是得到相同的结果: { "meta
哟,我正在为服务器制作一个 MOTD 供最终用户阅读。但是,对于使用较小显示器的用户来说,它看起来非常压缩,例如,当分辨率为 1280x1040 时,它会被拉低。我不熟悉 CSS 中的 @media
我在我的 CSS 文件中使用了 @media screen 而不是 (-webkit-min-device-pixel-ratio:0)。我的问题是关于指定的值,即在这种情况下为“0”。值的变化将如何
我正在播放 Activity 中的视频,我需要显示/隐藏顶部栏 View 以及媒体 Controller 。所以当媒体 Controller 在屏幕上时,我的顶部 View 应该是可见的,当媒体 Co
我在我的 WordPress 主题中创建了一个小部件来显示图像。到目前为止,小部件可以工作,我可以输入值并在前端显示这些值。 当我选择一个小部件并将其放入小部件区域时,媒体上传按钮不起作用。在 Wor
我正在使用MWFeedParser从此处读取Youtube原子供稿:here xml代码: 我如何获取媒体的网址:缩略图? 我试图更改MWFeedParser.m 由此: else if ([cu
当使用 Python 向 Instagram API 发出 GET 请求时,传递所需的变量,如下所示 photos = api.media_search(lat=latitude, lng=longi
我正在使用与媒体播放器关联的媒体 Controller 来播放声音。问题是媒体 Controller 一旦失去焦点就会隐藏起来。我有一个按钮,按下时会播放声音,媒体 Controller 会出现在屏幕
我有一个媒体播放器并与它关联了一个媒体 Controller 。控件工作正常。 我遇到了两个问题: 当媒体 Controller 获得焦点时,即用户触摸它然后触摸屏幕的另一部分时,媒体 Control
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我在对话框中显示一个 VideoView 并向其附加一个媒体控件。 但是当我尝试点击媒体控件(播放、搜索栏等)时,对话框会消失。 媒体控制按钮不会被点击,而是将点击注册为 Dialog 的 Outsi
我目前正在使用 HTML 编写可打印文档,它将显示从数据库中提取的数据。我的想法是我将使用 HTML/CSS 使文档看起来不错,但它将专门用于打印。 文档的布局使用表格来控制数据库中数据的显示方式。
我需要在网络应用程序中打印我的报告。 我有在我的代码中。但它不应用任何样式。另一方面,如果我使用 在文档中编写 print.css 代码一切正常。 怎么了? 最佳答案 也许你在主样式之前插入打印样式
CSS html{ overflow-y:scroll; } js function showW(){ var a=($(window).width()); $('#
我编写了一个 Chrome 扩展程序,其中一个功能是您可以在您所在的页面中调出一个帮助面板,其中包含其使用指南。这个帮助面板是通过JS插入到页面中的,它的CSS都是通过$('#selector_for
我需要为 WORM 媒体开发归档软件。 这种类型的媒体允许通常的访问操作:读取、写入,但文件一旦写入,就无法修改或删除。 因为这样的媒体可能很昂贵,我想知道如何在开发阶段为测试创建一个假的 WORM
下面的这个 Activity 工作正常,但 mediaController 仅在我单击屏幕时显示。第二个问题是媒体 Controller 只显示 3 秒。我应该怎么做才能消除这个问题? public
我正在使用 VideoView 播放本地 mp4,我也在使用 MediaController。媒体控制栏未显示在我的视频剪辑下方,而是显示在屏幕中间。我使用 setAnchorView 将其附加到我的
我的布局包含 videoView 还有java代码中的Medicontrolleri: final MediaController mediaCont
我是一名优秀的程序员,十分优秀!