- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图让 Lorem Ipsum 的段落在它和 spotify iframe 插入之间有大约 30px 的边距。我已经尝试了很多东西,并进行了搜索,但似乎无法让它像我想要的那样工作。这是我的代码笔的链接。 http://codepen.io/ChrisPetrick/pen/gpzRzY
.nickDrakeHorn {
border: 1px solid black;
overflow: hidden;
height: auto;
width: 100%;
background-color: #FF99CC;
}
#iframe {
margin-right: 30px;
margin-top: 30px;
margin-left: 20px;
}
#trackInfo1 {
float: left;
margin-left: 20px;
margin-right: 20px;
margin-top: 1px;
margin-bottom: 1px;
font-size: 20px;
width: 65%;
}
#commentary1 {
font-size: 20px;
width: 95%;
padding-left: 30px;
}
<div class="box nickDrakeHorn">
<div id="iframe">
<iframe src="https://embed.spotify.com/?uri=spotify%3Atrack%3A4XFZey4zmgQV551M0hfaUg" width="300" height="380" align="left" border-right="30px"></iframe>
</div>
<div id="trackInfo1">
<hr />
<p><strong>Track: <q>Horn</q></strong></p>
<p><strong>Artist: Nick Drake </strong></p>
<p><strong>Original Album: Pink Moon </strong></p>
<p><strong>Year: 1972 </strong></p>
<hr />
</div>
<div id="commentary1">
Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong.
Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit, Blah Blah Blah dolor sit amet nulla ham qui sint exercitation
eiusmod commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong. Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod
commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong. Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod
commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong.Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod
commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong.Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod commodo,
chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong.
Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong.
Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit,
dolore aliqua non est magna in labore pig pork biltong. Blah Blah Blah dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit,
dolore aliqua non est magna in labore pig pork biltong.
</div>
</div>
最佳答案
我已经用我的解决方案 fork 了你的 CodePen,以防你想摆弄它。
http://codepen.io/dharshba/pen/YXLQBb
.nickDrakeHorn {
border: 1px solid black;
overflow: hidden;
height: auto;
width: 100%;
background-color: #FF99CC;
padding:20px;
}
iframe {
float:left;
margin-right:30px;
margin-bottom:20px;
}
#trackInfo1 {
margin-top: 1px;
margin-bottom: 1px;
font-size: 20px;
width:100%;
}
#commentary1 {
font-size: 20px;
}
部分问题来自像素和百分比的尴尬组合。由于您的 iframe 宽度以像素为单位,因此您无法确定 #trackInfo1
上的 65% 宽度会在哪里结束。但是通过从那个 div 中删除 float:left
,它现在占据了 Spotify iframe 之后 剩下的 的 100%,而不是如果 iframe 占据更多则下降超过 35% 的空间,以获得更可预测的结果。
iframe 上 20 像素的底部边距恰好是您段落中线条结束位置的结果。如果您更改字体大小或行高,则可能需要进行调整。
我还认为您在尝试使用自己的边距和填充使单个元素远离边框时有一些额外的困惑。在外部 div (.nickDrakeHorn)
上放置填充是一种更简单的方法,可以防止内部的所有内容过于靠近边缘。
最后,包裹 iframe 的 div 似乎没什么作用,所以我把它从 HTML 中取出来,直接将样式应用到 iframe 标记上。
关于html - 文本离 iframe 太近 - 如何在它周围获得边距/边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31331030/
好吧,假设我有一堆光盘放在已知固定位置的飞机上。每个圆盘的半径为 1 个单位。该平面完全被一组圆盘覆盖,事实上,它被一组圆盘广泛覆盖,在某些区域覆盖了一两个数量级。我想找到仍然完全覆盖飞机的光盘子集。
我有一个涉及大量相关表的系统。考虑一个标准的类别/产品/订单/客户/订单项目场景。有些表是自引用的(如类别)。这些表都不是特别大(大约 10 万行,估计规模约为 100 万行)。我需要考虑这些数据的很
我正在学习 https://near.academy/near101/chapter-6 中的教程 其中一个步骤是运行此命令(但使用我的帐户): near call museum.testnet ad
我正在启动一个分析项目,该项目将处理数百万地理定位数据。数据可能是这样的: 编号{ 用户身份, 长, 纬度, 时间, 应用ID } 我的主要操作: 获取区域中包含的所有数据 找到属于某个userId的
在性能方面,JSON 解析需要大量时间来检索数据。在我的应用程序中,我需要从服务器获取近 10,000 条记录。在模拟器上,它立即获取数据并高效工作。但在我的 android 手机中,它需要超过2 分
任何人都可以帮助我从投影矩阵 44 获得左、右、下、上、近和远边界值吗? 最佳答案 这里是方程组的分辨率 Christian Rau引用: 对于正交矩阵: near = (1+m34)/m33;
我正在通过后台线程将 1,00,000 条记录插入到数据库中。此时,当我想要加载 Ui 屏幕时,出现内存不足错误。例如,当堆大小为 5 MB 且分配给后台线程的内存为 4 MB 时,加载 UI 屏幕需
C++如何存储近100000位的海量数字?.. 我试过使用 long long int 和 long double int..对我没有任何作用.. 有没有其他方法可以存储这么大的数字? 我希望找到大于
我是一名优秀的程序员,十分优秀!