- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
1) 知道如何在浏览器调整大小时阻止该文本溢出吗?我在较宽的屏幕上有一张照片,但当宽度变小时,我给 div 一个背景颜色,并设置浏览器不显示图片。
2) 此外,出于某种原因,当我对 section.welcome h1,p 元素进行更改时,此更改也应用于 .content 部分的 p 元素,该部分位于 .welcome 下方。
我认为问题在于在图像上显示文本的代码。当我将其注释掉时,文本根本不会溢出,但即使屏幕尺寸更大,我也必须完全删除图像。
HTML代码:
html,
body {
background-color: rgb(250, 250, 250);
font-family: 'Open Sans', sans-serif;
margin: 0px;
min-height: 100%;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
}
.navbar {
background-color: #1A212B;
display: flex;
padding: 15px;
color: white;
z-index: 1;
}
.navlink-brand {
font-size: 1.5em;
margin-right: auto;
}
.navlink {
padding-right: 8px;
}
.navlink a {
font-size: 1.1em;
color: rgb(255, 255, 255);
text-decoration: none;
transition: 0.2s;
font-weight: 500;
cursor: pointer;
font-weight: lighter;
}
.navlink a:hover {
color: #707A85;
}
.navItems {
display: flex;
align-items: center;
}
.navlink-Toggle {
display: none;
}
@media only screen and (max-width: 768px) {
.navItems,
.navbar {
flex-direction: column;
}
.navItems {
display: none;
}
.navToggleShow {
display: flex;
}
.navlink-Toggle {
align-self: flex-end;
display: initial;
position: absolute;
cursor: pointer;
}
.navlink {
margin: 10px;
}
.navlink-brand {
margin-left: 0;
}
}
.welcome {
text-align: center;
width: 100%;
min-height: 100%;
height: auto;
position: relative;
background-size: cover;
background-position: center;
}
@media only screen and (max-width: 800px) {
.welcome {
min-height: 25vh;
background-color: #707A85;
}
.welcome img {
display: none;
}
}
/*center welcome text,above img*/
.welcome>.welcIn {
top: 50%;
left: 50%;
margin: 0;
position: absolute;
transform: translate(-50%, -50%);
}
.welcome img {
opacity: 0.8;
max-width: 100%;
width: auto;
height: auto;
}
.welcome h1 {
text-shadow: 6px 6px px #1A212B;
font-weight: 900;
font-size: 2em;
}
.welcome p {
text-shadow: 6px 6px 6px #1A212B;
font-weight: 900;
font-size: 1.1em;
}
.welcome h1,
p {
font-size: 3em;
color: rgb(255, 255, 255);
margin: 15px 0;
line-height: 1;
}
/*for sticky footer*/
.all-wrapper {
flex: 1 0 auto;
}
.content {
width: 60%;
margin: auto;
}
.content h2 {
color: black;
text-align: center;
}
.content p {
color: black;
font-size: 18px;
line-height: 20px;
word-wrap: break-word;
text-align: left;
}
footer {
flex-shrink: 0;
border: solid 1px #1A212B;
width: 100%;
height: 50px;
background-color: #1A212B;
}
/*footer p*/
.last {
text-align: right;
color: rgb(255, 255, 255);
margin: 0 10px;
line-height: 50px;
}
<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="all-wrapper">
<div class="navbar"> //nav here
</div>
<main>
<section class="welcome">
<img src="header.png">
<div class="welcIn">
<h1>Welcome to </h1>
<p class="descr">A website where you can .</p>
</div>
</section>
<section class="content">
<h2>Text text text text text</h2>
<p>Text text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text text</p>
<p>Text text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text text</p>
<p>Text text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text texte</p>
</section>
</main>
</div>
<footer>
<div class="last"></div>
</footer>
<script src="script.js"></script>
</body>
</html>
最佳答案
问题来了,因为您要添加带有绝对位置的 .welcIn
,然后对其进行翻译。 parent 无法从 child 那里得到高度。
您可以尝试删除 position: absolute
和 transform: translate(-50%, -50%);
。然后添加一点填充,这会有所帮助。
html,
body {
background-color: rgb(250, 250, 250);
font-family: 'Open Sans', sans-serif;
margin: 0px;
min-height: 100%;
}
body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 100vh;
}
.navbar {
background-color: #1A212B;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 15px;
color: white;
z-index: 1;
}
.navlink-brand {
font-size: 1.5em;
margin-right: auto;
}
.navlink {
padding-right: 8px;
}
.navlink a {
font-size: 1.1em;
color: rgb(255, 255, 255);
text-decoration: none;
transition: 0.2s;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
font-weight: 500;
cursor: pointer;
font-weight: lighter;
}
.navlink a:hover {
color: #707A85;
}
.navItems {
display: flex;
align-items: center;
}
.navlink-Toggle {
display: none;
}
@media only screen and (max-width: 768px) {
.navItems,
.navbar {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.navItems {
display: none;
}
.navToggleShow {
display: flex;
}
.navlink-Toggle {
-ms-flex-item-align: end;
align-self: flex-end;
align-self: flex-end;
display: initial;
position: absolute;
cursor: pointer;
}
.navlink {
margin: 10px;
}
.navlink-brand {
margin-left: 0;
}
}
.welcome {
text-align: center;
width: 100%;
min-height: 100%;
height: auto;
position: relative;
background-size: cover;
background-position: center;
}
@media only screen and (max-width: 800px) {
.welcome {
background-color: #707A85;
}
.welcome img {
display: none;
}
}
/*center welcome text,above img*/
.welcome>.welcIn {
padding: 20px 0;
}
.welcome img {
opacity: 0.8;
max-width: 100%;
width: auto;
height: auto;
}
.welcome h1 {
text-shadow: 6px 6px px #1A212B;
font-weight: 900;
font-size: 2em;
}
.welcome p {
text-shadow: 6px 6px 6px #1A212B;
font-weight: 900;
font-size: 1.1em;
}
.welcome h1,
p {
font-size: 3em;
color: rgb(255, 255, 255);
margin: 15px 0;
line-height: 1;
}
/*for sticky footer*/
.all-wrapper {
flex: 1 0 auto;
}
.content {
width: 60%;
margin: auto;
}
.content h2 {
color: black;
text-align: center;
}
.content p {
color: black;
font-size: 18px;
line-height: 20px;
word-wrap: break-word;
text-align: left;
}
footer {
flex-shrink: 0;
border: solid 1px #1A212B;
width: 100%;
height: 50px;
background-color: #1A212B;
}
/*footer p*/
.last {
text-align: right;
color: rgb(255, 255, 255);
margin: 0 10px;
line-height: 50px;
}
<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="all-wrapper">
<div class="navbar"> //nav here
</div>
<main>
<section class="welcome">
<img src="header.png">
<div class="welcIn">
<h1>Welcome to </h1>
<p class="descr">A website where you can .</p>
</div>
</section>
<section class="content">
<h2>Text text text text text</h2>
<p>Text text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text text</p>
<p>Text text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text text</p>
<p>Text text text textText text text textText text text textText text text textText text text textText text text textText text text textText text text texte</p>
</section>
</main>
</div>
<footer>
<div class="last"></div>
</footer>
<script src="script.js"></script>
</body>
</html>
关于html - 浏览器调整大小时文本溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55950247/
我有 0 小时、3 小时、12 小时、24 小时、48 小时的数据组……我想绘制这些数据的图表,以便保留时间的比例。 runs <- c(1:25) hours <- as.factor(c(0, 3
例如,如果我选择了时间:下午 3 点和小时数:5 小时,则得到 (8pm) 作为答案“ 最佳答案 let calendar = Calendar.current let date = calendar
我有一个包含两个日期时间字段的表单。用户输入日期 (yyyy-mm-dd) 和时间(3 个框;小时、分钟、上午/下午)。 出于某种原因,第一个没有保存为 24 小时制。 以下数据为输入结果: 2011
我一直在尝试使用导出单位进行计算,但到目前为止我还没有取得任何成果。 我已经尝试过mathjs ,但如果我输入 1 小时 * 1 英里/小时,我会得到 UnsupportedTypeError: Fu
我有两组要运行的 cronjob。第一个应该每 3 小时运行一次,第二个也应该每 3 小时运行一次,但比第一组晚一个小时。什么是正确的语法? // every 3 hours 17 */3 * *
我知道 AWS 中的预留实例更多的是计费而不是实际实例——它们没有附加到实际实例——我想知道: 如果我在特定区域和可用区中购买特定时间的预留实例 - 如果我每天 24 小时使用单个实例与运行 24 个
我试过: seq( from=as.POSIXct("2012-1-1 0", tz="UTC"), to=as.POSIXct("2012-1-3 23", tz="UTC"),
我有一个带有“日期”列的表。我想按小时分组指定日期。 最佳答案 Select TO_CHAR(date,'HH24') from table where date = TO_DATE('2011022
我知道如何在 SQL (SQL Server) 中获取当前日期,但要获取当天的开始时间: select dateadd(DAY, datediff(day, 0, getdate()),0) (res
我正在尝试在游戏之间创建一个计时器,以便用户在失去生命后必须等待 5 分钟才能再次玩游戏。但是我不确定最好的方法是什么。 我还需要它来防止用户在“设置”中编辑他们的时间。 实现这一目标的最佳方法是什么
我的查询有误。该错误显示预期的已知函数,得到“HOUR”。如果我删除这部分,查询将正常工作 (AND HOUR({$nowDate}) = 11) SELECT c FROM ProConvocati
var d1 = new Date(); var d2 = new Date(); d2.setHours(d1.getHours() +01); alert(d2); 这部分没问题。现在我试图在 (
我正在构建一个用于练习的基本时钟应用程序,但出于某种原因,时间不会自动更改为最新的分钟或小时。例如,当前时间是 17:56,但它显示的是 17:54,这是我打开应用程序的最后时间。 NSDate *n
我创建了一张图片,我想将其用作页面的 hr。当它被上传时,它一直向左对齐。我希望它居中,在标题下。这是我的 CSS 代码: .section-underline { height: 35px
这个问题已经有答案了: Getting difference in seconds from two dates in JavaScript (2 个回答) 已关闭 4 年前。 我想计算两个具有不同格
我需要计算到某个日期/时间的剩余时间(天/小时)。 但是,我没有使用静态日期。 假设我在 每个星期日 的 17:00 有一个事件。我需要显示到下一个事件的剩余时间,即即将到来的星期日 17:00。 我
我正在执行这个脚本: SELECT EXTRACT(HOUR FROM TIMEDIFF('2009-12-12 13:13:13', NOW())); 我得到:-838。这是提取时 MySQL 可以
复制代码 代码如下: /** * 小时:分钟的正则表达式检查<br> * <br> * @param pInput 要检查的字符串 * @return boolean 返
连wifi5元/小时 独领风骚 朕好帅 今晚你是我的人 十里桃花 高端定制厕所VP专用 一只老母猪 在家好无聊 你爹的wifi 密码是叫爸爸全拼 关晓彤和鹿晗分手了吗 蹭了我的
我有以下数据框列: 我需要将 csv 列中的对象字符串数据转换为总秒数。 示例:10m -> 600s 我试过这段代码: df.duration = str(datetime.timedelta(df
我是一名优秀的程序员,十分优秀!