- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在这里处理一个堆栈..
我正在构建一个宽度为 100% 并在达到 768 像素时更改为 90% 的网站。包含 6 张图像的部分(2 行,每行 3 张图像)无法按我的意愿工作。图像在达到 768px 之前没有边距,超过此尺寸我想在图像周围应用 5 或 10px 的边距,但将它们保持在 3列。我认为使用 border-box 作为我的 box-sizing 属性可以保护我免受图像换行到下一行的影响,但事实并非如此。我试图对图像包装器应用负边距,但事实并非如此要么工作。你能帮我找到那个问题的解决方案吗?
PS:当图像的最大宽度达到 1320px 时,代码完全按照我想要的方式工作(代码应用于媒体查询最小宽度 992px)。它是精确的,并且与我制作的引导 div 具有完全相同的宽度/边距。
我需要它作为最终结果,以一种完全响应和流畅的方式(使用 % 因为可能会包含新图像并且必须保持相等的边距,无论视口(viewport)的大小是多少):
谢谢!
代码如下:
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>RESTAURANT</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href=""/>
<!-- Fonts Google -->
<!-- 1. Poppins -->
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,400i,500,600,700" rel="stylesheet">
<!-- 2. Herr Von Muellerhoff -->
<link href="https://fonts.googleapis.com/css?family=Herr+Von+Muellerhoff" rel="stylesheet">
<!-- 3. Open Sans -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Font-awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- CSS Style -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style-mqueries.css"><!--media queries-->
</head>
<body>
<div class="site-container">
<header class="grey4-bg flex-center section-sep">
<h1>HEADER</h1>
</header>
<main>
<section class="services section-sep">
<div class="marged">
<div class="section-header">
<h2 class="handwriting">Services</h2>
<h3>super class service</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repudiandae fugit labore delectus.</p>
</div>
<div class="images-parent neg-margin flex">
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
</div>
</div><!-- /.marged -->
</section><!-- /.services -->
</main>
<section class="guide">
<div class="marged pad-v10 blue-bg txt-center white-txt">guide</div>
</section>
</div><!-- /.site-container -->
</body>
</html>
CSS
@charset "UTF-8";
*{margin: 0; padding: 0; font-family: 'Poppins', sans-serif;}
body{height:100%; color:#292929;}
html{height:100%; font-size:16px; box-sizing:border-box;}
*, *:before, *:after{box-sizing:border-box;}
ul{list-style: none;}
a{color:inherit;text-decoration: none;}
p{font-family: 'Open Sans', sans-serif;}
/* POSITIONING ELEMENTS */
/* Flex, Margin, Padding */
.flex, .flex-col, .justify-c, .flex-align-c, .flex-center, .flex-col-center {display: flex; }
.txt-center{text-align: center;}
/* COLORS and SHADOWS*/
.white-bg{ background-color: #fff; } .white-txt{ color: #fff; }
.grey4-bg{background-color:#f1f4f9;} .grey4-txt{color:#f1f4f9;}
.blue-bg{ background-color: #3F72AF; } .blue-txt{ color: #3F72AF; }
/* OTHER */
.bg-img{background-size:cover; background-position:center center; background-repeat:no-repeat;}
.hidden-sm{display:none;}
.visible-md{display:none;}
.visible-lg{display:none;}
/* WEBSITE STYLE */
/* GENERAL */
/* MATERIAL KIT - ELEMENTS */
.section-sep{padding: 20px 0; }
.marged{max-width:1170px; margin:0 auto;}
.section-header{
padding-top:10px;
padding:bottom:20px;
padding-left:10px;
padding-right:10px;
text-align:center;
}
.section-header h2{
margin-bottom:-25px;
color:#e7e7e7;
font-size:60px;
font-family: 'Herr Von Muellerhoff', cursive;
font-weight:400;
line-height:1em;
}
.section-header h3{
color:#474747;
margin-bottom:10px;
line-height:1.2em;
font-size:;
font-weight:700;
text-transform:uppercase;
letter-spacing:1px;
}
.section-header p{
color:#8d8d8d;
max-width:446px;
margin:0 auto;
padding:10px 0;
line-height:1em;
font-size:14px;
font-weight:300;
}
.btn{
min-width:200px;
padding:20px 0;
background-color:#606060;
color:#fff;
text-transform:uppercase;
cursor:pointer;
}
/******************************************************
*********************** HEADER ***********************
*******************************************************/
h1 {
font-size: 55px;
background: -webkit-linear-gradient(left,#ee0979 0%, #ff5c3b 30%);
background: linear-gradient(to right,#ee0979 0%, #ff5c3b 30%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/******************************************************
*********************** MAIN ************************
*******************************************************/
/* SECTION : SERVICES */
.services .flex{
justify-content:center;
flex-wrap:wrap;
}
.neg-margin{
margin-left:0px;
margin-right:0px;
}
.services .images-parent{
padding-top:30px;
background-color:pink;
}
.services .img-holder{
background-image:url("https://images6.alphacoders.com/434/434430.jpg");
width:33.33%;
height:100px;
max-height:300px;
}
媒体查询
@media only screen and (min-width: 576px) {
.services .img-holder{
height:150px;
}
}
/* MD - MEDIUM */
@media only screen and (min-width: 768px) {
.marged{
width:90%;
}
.services .img-holder{
margin:5px;
}
}
/* LG - LARGE */
@media only screen and (min-width: 992px) {
.neg-margin{
margin-left:-15px;
margin-right:-15px;
}
.services .img-holder{
height:300px;
max-width:370px;
margin:15px;
}
}
最佳答案
这是你想要的吗??
@charset "UTF-8";
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body {
height: 100%;
color: #292929;
}
html {
height: 100%;
font-size: 16px;
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: border-box;
}
ul {
list-style: none;
}
a {
color: inherit;
text-decoration: none;
}
p {
font-family: 'Open Sans', sans-serif;
}
/* POSITIONING ELEMENTS */
/* Flex, Margin, Padding */
.flex, .flex-col, .justify-c, .flex-align-c, .flex-center, .flex-col-center {
display: flex;
}
.txt-center {
text-align: center;
}
/* COLORS and SHADOWS*/
.white-bg {
background-color: #fff;
}
.white-txt {
color: #fff;
}
.grey4-bg {
background-color: #f1f4f9;
}
.grey4-txt {
color: #f1f4f9;
}
.blue-bg {
background-color: #3F72AF;
}
.blue-txt {
color: #3F72AF;
}
/* OTHER */
.bg-img {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.hidden-sm {
display: none;
}
.visible-md {
display: none;
}
.visible-lg {
display: none;
}
/* WEBSITE STYLE */
/* GENERAL */
/* MATERIAL KIT - ELEMENTS */
.section-sep {
padding: 20px 0;
}
.marged {
max-width: 1170px;
margin: 0 auto;
}
.section-header {
padding-top: 10px;
padding:bottom:20px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
}
.section-header h2 {
margin-bottom: -25px;
color: #e7e7e7;
font-size: 60px;
font-family: 'Herr Von Muellerhoff', cursive;
font-weight: 400;
line-height: 1em;
}
.section-header h3 {
color: #474747;
margin-bottom: 10px;
line-height: 1.2em;
font-size:;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}
.section-header p {
color: #8d8d8d;
max-width: 446px;
margin: 0 auto;
padding: 10px 0;
line-height: 1em;
font-size: 14px;
font-weight: 300;
}
.btn {
min-width: 200px;
padding: 20px 0;
background-color: #606060;
color: #fff;
text-transform: uppercase;
cursor: pointer;
}
/******************************************************
*********************** HEADER ***********************
*******************************************************/
h1 {
font-size: 55px;
background: -webkit-linear-gradient(left, #ee0979 0%, #ff5c3b 30%);
background: linear-gradient(to right, #ee0979 0%, #ff5c3b 30%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/******************************************************
*********************** MAIN ************************
*******************************************************/
/* SECTION : SERVICES */
.services .flex {
justify-content: space-between;
flex-wrap: wrap;
}
.neg-margin {
margin-left: 0px;
margin-right: 0px;
}
.services .images-parent {
padding-top: 30px;
background-color: pink;
margin-left: 0;
margin-right: 0;
}
.services .img-holder {
background-image: url("https://images6.alphacoders.com/434/434430.jpg");
width: 33.33%;
height: 100px;
max-height: 300px;
}
@media only screen and (min-width: 576px) {
.services .img-holder {
height: 150px;
}
}
/* MD - MEDIUM */
@media only screen and (min-width: 768px) {
.marged {
width: 90%;
}
.services .img-holder {
margin: 5px;
}
}
/* LG - LARGE */
@media only screen and (min-width: 992px) {
.neg-margin {
margin-left: -15px;
margin-right: -15px;
}
.services .img-holder {
height: 300px;
max-width: 370px;
margin: 13px 0;
}
}
@media only screen and (max-width: 768px) {
.services .img-holder {
width: 32%;
margin: 6px 0 !important;
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>RESTAURANT</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href=""/>
<!-- Fonts Google -->
<!-- 1. Poppins -->
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,400i,500,600,700" rel="stylesheet">
<!-- 2. Herr Von Muellerhoff -->
<link href="https://fonts.googleapis.com/css?family=Herr+Von+Muellerhoff" rel="stylesheet">
<!-- 3. Open Sans -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Font-awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- CSS Style -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style-mqueries.css">
<!--media queries-->
</head>
<body>
<div class="site-container">
<header class="grey4-bg flex-center section-sep">
<h1>HEADER</h1>
</header>
<main>
<section class="services section-sep">
<div class="marged">
<div class="section-header">
<h2 class="handwriting">Services</h2>
<h3>super class service</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repudiandae fugit labore delectus.</p>
</div>
<div class="images-parent neg-margin flex">
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
<div class="img-holder bg-img"></div>
</div>
</div>
<!-- /.marged -->
</section>
<!-- /.services -->
</main>
<section class="guide">
<div class="marged pad-v10 blue-bg txt-center white-txt">guide</div>
</section>
</div>
<!-- /.site-container -->
</body>
</html>
关于css - 尝试使用纯 CSS Flexbox 制作带装订线的 3 列网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49205719/
我面临着让一个相当复杂的网络应用程序在 HTML/CSS 中工作的问题。我发现 flexbox 有很多问题,这似乎可以解决我的问题。我试图了解我做错了什么或 flexbox 的限制是什么。我只在 Ch
尝试扩展 FlexBox 容器内输入的宽度。我希望它与父容器具有相同的宽度。这是我的 view.xml:
尝试扩展 FlexBox 容器内输入的宽度。我希望它与父容器具有相同的宽度。这是我的 view.xml:
我有两个 flexbox,它们在高度变化时收缩,嵌套内容重叠。 如何防止这种情况? 最佳答案 just add flex-shrink:0 to your element and the flexbo
我对 FlexBoxes 有疑问 - 我想要 我想将页面的一个部分分成两部分(相同高度),例如每个 100 像素 这些部分之一(第 2 个)我想分成三个小部分(等高)100/3 = 33px 下面的代
我的内容布局由三个部分组成:页眉、内容和页脚。对于小型设备,我想保留此顺序,在桌面设备上,我想将页眉和页脚移至侧边栏。 使用 float 实现:http://codepen.io/anon/pen/j
我正在尝试实现以下布局: +---------+---------------------+ |legend | | +---------+
我在尝试使用 Flexbox 进行某些标记时遇到问题。我制作了这个代码笔来演示我的问题:http://codepen.io/anon/pen/QjbzJY?editors=110 我希望左侧的图像(.
我正在尝试获得一个看起来有点像这样的用户界面: 在图片中,假装带有“New York...”的顶部栏和“Book it”按钮是固定的,并且它们之间的内容是可滚动的。 到目前为止,我的 HTML 是这样
我尝试调整一些动态内容,使其适合要打印的标签。 标签有一行 (.symbolContainer),可以包含 0 个或多个图像。目标是在 .text 框的内容需要更多空间时缩小 .symbolConta
我是 Stack Overflow 的新手,我遇到了 flexbox 的问题。 我想使用 和 与 display: flex;其中 main 的每一行都有 2 列 height: 100%浏览器和页脚
我想创建一个带有部分的水平 slider 。 Section 1 Card 1 ... Section 2 Card 1 ... ...
在给定的代码中,我需要识别第一行的最后一个元素和最后一行的第一个元素。只是为了让它从各个 Angular 落变圆。我怎样才能做到这一点?我需要在这里提到的是,根据屏幕尺寸,列号以及第一行的最后一个元素
我花了一整天的时间来完成这项工作。虽然我可以使用一个 flex 盒,但当一个 flex 盒要包含另一个 flex 盒时就会变得很麻烦。 我试着按照这个问题的提示去做: Flexbox inside a
在我的测试中(以及我的其他 SO 问题的回答),当 flexbox 占用页面的整个宽度或具有固定宽度的父元素时,它可以很好地处理溢出文本。但是,如果具有动态宽度的 flexbox 在另一个动态宽度 f
我正在尝试让一个 flexbox 在 flexbox 内部工作。当第一个(包装)flexbox 工作时,里面的那个什么都不做。无论如何让这个工作? 我想要做的是有效地拥有两个粘性页脚,并且两者的高度都
我正在尝试使用 flexboxes 并想组合一个列和行容器。我的问题是: 为什么放置在列中的行元素没有跨越 flex 容器的整个宽度? 此处显示示例代码:js-fiddle HTML: /* CSS:
目标 我正在使用 SASS 开发一个基于 flexbox + calc() 的 grid system with gutters。 您可以像这样通过混合定义网格: .box { @inc
在IE11下运行时,下面的例子会在itemwrapper的底部添加空格元素。在开发控制台中检查时,此空间不归因于边距、填充或边框。测量子元素的高度似乎是一个问题,因为如果给它们一个固定的高度,那么空间
我的目标是在 Angular 5 项目中使用 ag-grid,并让网格占据 Flexbox 布局中的所有可用垂直空间。当网格包含在具有定义的像素高度的 div 中时,或者当 div 具有百分比高度但不
我是一名优秀的程序员,十分优秀!