- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的网站响应式运行,那么为什么会有水平滚动条?我对此感到困惑!水平滚动条消失需要什么?此外,标题在移动设备上不会缩小到 320px 标记处,即使在代码编辑器中测试时它会缩小......???
这是我的 CodePen 的链接:https://codepen.io/IDCoder/pen/Xevyqq
这是我的 HTML 代码:
<html>
<title></title>
<head><meta name="viewport" content="width=device-width, initial-scale=1"></head>
<body>
<div class="Main">
<div class="Header Box">
<div id="One">
<img src="https://s1.postimg.org/5ape0obb0f/Ethersonic_Header_Test_a.jpg" width="1000" height="166"/>
</div>
</div>
<div class = "Second Row">
<div class="About Us">
<h1>Technology you can trust</h1>
<p>Ethersonic Technologies has been servicing Chicago and the surrounding suburbs since April 2008. We are a Certified (VOSB) Veteran Owned Small Business with the Federal Government and a member of the BBB (Better Business Bureau) with an A+ rating.</p>
<p>Ethersonic specializes in Computer diagnosis and repair, Security Camera Installation and repair and Network Installation and Repair</p>
</div>
<div class="BBB VOSB">
<img src="https://s1.postimg.org/284vrnvfsv/BBB_and_VOSB_Logos.jpg" width="200" height="124"/>
</div>
</div>
<div class="Third Row">
<div id="Computers">
<img src="https://s1.postimg.org/1dv3jss5yn/asus-reveals-the-rog-g11-gaming-desktop-491165-2.jpg" width="300" height="203"/>
<p>
Desktop and Laptop Repair
</p>
</div>
<div id="Security">
<img src="https://s1.postimg.org/8j0ejlsp7j/Security_Cameras.jpg
" width="300" height="201"/>
<p>
Security Camera Systems | <br>
Access Controls Systems |
Intercom Systems
</p>
</div>
<div id="Networking">
<img src="https://s1.postimg.org/7ymhfqjm3z/Networking_2.jpg" width="300" height="220"/>
<p>
Network Installation |
Low Voltage Cabling
</p>
</div>
</div>
<div class="Fourth Row">
<div class="container">
<div id="slider">
<figure>
<img src="https://s1.postimg.org/7uayt1hjf3/378c87079dddbfe1d78c9f892695626fl-m0xd-w1020_h770_q80.jpg"/>
<img src="https://s1.postimg.org/11px6krrfz/extralarge.jpg"/>
<img src="https://s1.postimg.org/6yehdl959r/gen_Mid.09186160_1.jpg"/>
<img src="https://s1.postimg.org/8tr267l5fz/ISaly9e2xn0r8r1000000000.jpg"/>
<img src="https://s1.postimg.org/11px6krz5r/ISinl3p5sts48e1000000000_1.jpg"/>
</figure>
</div>
</div>
<div>
<div class ="Slideshow Description">
<p>
We are Installation Experts! <br>
Offering Customized Installation for Both Residentials and Commercial Properties
</p>
</div>
</div>
</div>
<div class="Footer">
<div>
© Ethersonic Technologies LLC. All rights reserved.
</div
</div>
</body>
</html>
这是我的 CSS 代码:
.Main{
display: grid;
grid-template-columns: 1/1r;
/*background-color: green;*/
margin: 5px 125px 0 75px;
grid-gap: 25px;
}
.Header.Box {
display: grid;
grid-template-columns: 100%;
/*background-color: red;*/
grid-gap: 15px;
}
.About.Us{
font-size: 15px
}
.BBB.VOSB{
text-align: right;
padding-right: 10px;
}
#One, #Two, #Three {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
}
.Second.Row{
display: grid;
grid-template-columns: 100%;
grid-gap: 15px;
}
.Third.Row{
display: grid;
grid-template-columns: 100%;
grid-gap: 15px;
/*background-color: green;*/
}
#Computers, #Security, #Networking{
/*border-style: solid;*/
border-color: black;
border-width: 1px;
border-radius: 15px;
padding: 5px;
text-align: center;
}
.Fourth.Row{
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 25px;
/*background-color: blue;*/
}
.container{
max-width: 500px;
/*background-color: blue;*/
}
@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}
body { margin: 0; }
div#slider { overflow: hidden; }
div#slider figure img { width: 20%; float: left; }
div#slider figure {
position: relative;
width: 500%;
margin: 0;
left: 0;
text-align: left;
font-size: 0;
animation: 30s slidy infinite;
}
.Slideshow.Description{
font-size: 1.25em;
}
.Footer{
display: grid;
grid-template-columns: repeat(1, 1fr);
grid-gap: 25px;
text-align: center;
padding-bottom: 20px;
padding-top: 20px;
font-size: 17px;
/*background-color: yellow;*/
}
@media (min-width: 500px){
.Header.Box{
display: grid;
grid-template-columns: 1fr;
}
}
#One img{
width: 100%;
height: auto;
}
@media (min-width: 500px) {
.Second.Row{
display: grid;
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 320px) {
h1{
display: grid;
grid-template-columns: 1fr 1fr;
font-size: h2;
}
}
@media (max-width: 320px) {
#One img{
display: grid;
grid-template-columns: 1fr;
width: 200px;
height: auto;
}
}
@media (min-width: 500px) {
.Third.Row{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
}
@media (min-width: 500px) {
.Fourth.Row{
display: grid;
grid-template-columns: 1fr 1fr;
}
}
最佳答案
您有两个问题导致了这种情况。
第一个问题是specificity .你有很多硬编码widths
在您的图像中(例如 <img src="https://s1.postimg.org/5ape0obb0f/Ethersonic_Header_Test_a.jpg" width="1000" height="166" />
)。这是 1000px
的硬编码宽度;远不止 320px
的媒体查询可以处理。相反,我建议使用基于百分比的宽度,例如 100%
.
另请注意,虽然媒体查询确实会比常规 CSS 选择器增加更多的特异性(并因此覆盖它),但内联 width
像这样的属性具有尽可能高的特异性。
您可以通过添加 !important
来覆盖它到您的媒体查询 width
声明,但我强烈建议改为删除图像中的固定宽度,并使用新的 CSS 选择器来定位图像。
第二个问题是你的硬编码 margin
.Main
上的属性, 它增加了 75px
的边距在左边,和125px
在右侧。当然,这可能适用于大屏幕,但在只有 320px
的设备上总的来说,您将几乎三分之二的宽度渲染为基本无用。您应该显着减少这些边距,或者使用 percentage-based values 这样他们就会适应。
另请注意 320px
对于标准的移动媒体查询来说远太小了;几乎您唯一会接触到的手机就是旧黑莓手机。我强烈建议您查看 a list of media queries 的 CSS 技巧 用于标准设备。大多数平板电脑的标准是 768px
, 大多数手机的标准是 576px
.
这是一个更新的片段,包含所有硬编码的 width
和 height
删除了属性,一个简单的 img
添加声明以确保它们不会超出其父级的范围:
img {
max-width: 100%;
width: 100%;
}
img {
max-width: 100%;
width: 100%;
}
.Main {
display: grid;
grid-template-columns: 1/1r;
/*background-color: green;*/
margin: 5px 125px 0 75px;
grid-gap: 25px;
}
.Header.Box {
display: grid;
grid-template-columns: 100%;
/*background-color: red;*/
grid-gap: 15px;
}
.About.Us {
font-size: 15px
}
.BBB.VOSB {
text-align: right;
padding-right: 10px;
}
#One,
#Two,
#Three {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
}
.Second.Row {
display: grid;
grid-template-columns: 100%;
grid-gap: 15px;
}
.Third.Row {
display: grid;
grid-template-columns: 100%;
grid-gap: 15px;
/*background-color: green;*/
}
#Computers,
#Security,
#Networking {
/*border-style: solid;*/
border-color: black;
border-width: 1px;
border-radius: 15px;
padding: 5px;
text-align: center;
}
.Fourth.Row {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 25px;
/*background-color: blue;*/
}
.container {
max-width: 500px;
/*background-color: blue;*/
}
@keyframes slidy {
0% {
left: 0%;
}
20% {
left: 0%;
}
25% {
left: -100%;
}
45% {
left: -100%;
}
50% {
left: -200%;
}
70% {
left: -200%;
}
75% {
left: -300%;
}
95% {
left: -300%;
}
100% {
left: -400%;
}
}
body {
margin: 0;
}
div#slider {
overflow: hidden;
}
div#slider figure img {
width: 20%;
float: left;
}
div#slider figure {
position: relative;
width: 500%;
margin: 0;
left: 0;
text-align: left;
font-size: 0;
animation: 30s slidy infinite;
}
.Slideshow.Description {
font-size: 1.25em;
}
.Footer {
display: grid;
grid-template-columns: repeat(1, 1fr);
grid-gap: 25px;
text-align: center;
padding-bottom: 20px;
padding-top: 20px;
font-size: 17px;
/*background-color: yellow;*/
}
@media (min-width: 500px) {
.Header.Box {
display: grid;
grid-template-columns: 1fr;
}
}
#One img {
width: 100%;
height: auto;
}
@media (min-width: 500px) {
.Second.Row {
display: grid;
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 320px) {
h1 {
display: grid;
grid-template-columns: 1fr 1fr;
font-size: h2;
}
}
@media (max-width: 320px) {
#One img {
display: grid;
grid-template-columns: 1fr;
width: 200px;
height: auto;
}
}
@media (min-width: 500px) {
.Third.Row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
}
@media (min-width: 500px) {
.Fourth.Row {
display: grid;
grid-template-columns: 1fr 1fr;
}
}
<html>
<title></title>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="Main">
<div class="Header Box">
<div id="One">
<img src="https://s1.postimg.org/5ape0obb0f/Ethersonic_Header_Test_a.jpg" />
</div>
</div>
<div class="Second Row">
<div class="About Us">
<h1>Technology you can trust</h1>
<p>Ethersonic Technologies has been servicing Chicago and the surrounding suburbs since April 2008. We are a Certified (VOSB) Veteran Owned Small Business with the Federal Government and a member of the BBB (Better Business Bureau) with an A+ rating.</p>
<p>Ethersonic specializes in Computer diagnosis and repair, Security Camera Installation and repair and Network Installation and Repair</p>
</div>
<div class="BBB VOSB">
<img src="https://s1.postimg.org/284vrnvfsv/BBB_and_VOSB_Logos.jpg" />
</div>
</div>
<div class="Third Row">
<div id="Computers">
<img src="https://s1.postimg.org/1dv3jss5yn/asus-reveals-the-rog-g11-gaming-desktop-491165-2.jpg" />
<p>
Desktop and Laptop Repair
</p>
</div>
<div id="Security">
<img src="https://s1.postimg.org/8j0ejlsp7j/Security_Cameras.jpg
" />
<p>
Security Camera Systems | <br> Access Controls Systems | Intercom Systems
</p>
</div>
<div id="Networking">
<img src="https://s1.postimg.org/7ymhfqjm3z/Networking_2.jpg" />
<p>
Network Installation | Low Voltage Cabling
</p>
</div>
</div>
<div class="Fourth Row">
<div class="container">
<div id="slider">
<figure>
<img src="https://s1.postimg.org/7uayt1hjf3/378c87079dddbfe1d78c9f892695626fl-m0xd-w1020_h770_q80.jpg" />
<img src="https://s1.postimg.org/11px6krrfz/extralarge.jpg" />
<img src="https://s1.postimg.org/6yehdl959r/gen_Mid.09186160_1.jpg" />
<img src="https://s1.postimg.org/8tr267l5fz/ISaly9e2xn0r8r1000000000.jpg" />
<img src="https://s1.postimg.org/11px6krz5r/ISinl3p5sts48e1000000000_1.jpg" />
</figure>
</div>
</div>
<div>
<div class="Slideshow Description">
<p>
We are Installation Experts! <br> Offering Customized Installation for Both Residentials and Commercial Properties
</p>
</div>
</div>
</div>
<div class="Footer">
<div>
© Ethersonic Technologies LLC. All rights reserved.
</div>
</div>
</body>
</html>
希望对您有所帮助! :)
关于css - 为什么我的响应式网页上有水平滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47084311/
我有一个名为 main.css 的 css 文件和另一个名为 style.css 的文件。我怎样才能在 main.css 中做到这一点? .someClass { //apply rules to
在更新我的 css 之前,我在 Login.css 中有以下内容: body { background-image: url('./pictures/fond.png'); bac
我的 share point 2013 核心 css 和我的 css 之间存在 css 冲突。所以我想把我所有的类都放在 div #s4-workspace 下但是我搜索了一种方法来将所有类分组到这个
我知道您可以覆盖 jsp 页面从 jsp 包含 CSS 文件(即全局 CSS 文件)继承的 CSS 属性。 但是,如果元素中的某个属性弄乱了特定页面,而我不想只使用内联 CSS 在该页面中使用它怎么办
我刚刚发现了 initial-scale 元属性。 以前,我一直在使用 default.css 来定义我所有的样式和大小(用于字体和元素),以便它们在桌面计算机的屏幕上显示得很好。然后,如果您使用的是
我正在尝试使用 LESS CSS 来编写我的 CSS。我已经按顺序导入了 style.less 和 less.js 文件。 现在我想提取 LESS 生成的 CSS。有什么办法可以做到吗?我不想使用脚本
我想知道是否有任何一种软件可以读取大量内联样式中的 HTML 文档并将所有这些样式转换为外部 css 文件。如果只有一页,我可以手动完成。但是有100页。有人有想法吗? 最佳答案 就像有人说的那样,“
当我想从 Styled Components 迁移到 CSS Modules 时,出现了以下问题。 假设我有以下样式组件,它接受动态参数 offset和一个动态 CSS 字符串 theme : con
有没有办法将 CSS 类定义为与另一个类相等?例如,如果我有一个类: .myClass{ background-color: blue; } 有没有一种方法可以将第二个类定义为与 myClas
我正在尝试制作一组按钮,这些按钮贴在页面底部并且由固定的空间隔开。我正在使用 angularJS 的 ng-repeat 指令通过 ajax 请求获取数据,然后我用它来显示按钮。 我的问题在于让按
浏览器是否在加载 CSS 文件时解析 CSS?还是在整个 CSS 文件被浏览器下载后才进行解析?不同浏览器的做法有区别吗?我在哪里可以找到这种底层信息? 这个问题不是 Load and executi
这个问题在这里已经有了答案: Can a CSS class inherit one or more other classes? (29 个答案) 关闭 3 年前。 标题有点乱,我给大家看一下。假
我遇到了最奇怪的问题...... 在最简单的形式中,我有一个包含以下内容的 index.html 文件: (在尝试确定根本原因的过程中,我已经大大减少了它) 当我查看页面的源代码时,我得到以下信息:
我正在使用 Mindscape Workbench 来最小化我的 scss 文件。我的页面设置为使用 *.min.css 文件。在随机时间,min 文件不会与系统的其余部分一起发布。 我有很多 css
请告诉我 CSS 框架和 CSS 网格之间的区别。 最佳答案 CSS 框架也可以是 CSS 网格框架。 CSS 网格框架用于构建 CSS 布局。有一些框架除了构建布局还有其他用途,例如 Hartija
我有无法从页面中删除或更改的 original.css 文件。原始.css table { border-collapse: collapse; border-spacing: 0;
我以前使用 bootstrap css import 很好。 但是我正在尝试使用 CSS 模块,所以我添加了几行。 { test: /\.css$/, use:
有没有办法在 css 选择器中创建一个 css 组。 例如: .SectionHeader { include: .foo; include: .bar; include: .
今天我学习了 CSS 中的两个概念,一个是 CSS 定位(静态、相对、绝对、固定),另一个是 CSS Margin,它定义了元素之间的空间。 假设我想移动一个元素,这是最好的方法吗?因为这两个概念似乎
var paths = { css: './public/apps/user/**/*.css' } var dest = { css: './public/apps/user/css/' } /
我是一名优秀的程序员,十分优秀!