如何在网格中显示 Facebook link?
How can I show Facebook link in a grid?
我需要这方面的帮助 <iframe>
,我无法插入到网格布局中。除了这个网格布局,我可以将 <iframe>
插入到网站的每个部分。
感谢您的帮助。
.lluncamp2 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 30px;
}
.lluncamp2 img {
object-fit: cover;
width: 100%;
max-height: 200px;
}
<div class="lluncamp2">
<div>
<ul>Laundry room-
<li>Coin operated Washing machine</li>
<li>Tumble dryer</li>
<li>FREE Fridge/ Freezer</li>
<li>Shaving and electricity points</li>
</ul>
</div>
<div>
<iframe src="https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2
F%2Fwww.facebook.com%2Fkosmic.suture%2Fvideos%2F1936825236449065%2F&show_text=false&width=560" max-width="560" max-height="314" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write;
encrypted-media; picture-in-picture; web-share" allowFullScreen="true"></iframe></div>
<div>Ample field space to enjoy and play</div>
<div>Chemical disposal point</div>
<div>FREE hot water in both the showers and dishwashing room</div>
<div>Coin operated launderette</div>
</div>
如果那是您的实际 HTML,那么问题出在 iframe 标记的 src 属性上的换行符。如果我将您的 iframe 更改为:
,它对我来说运行良好
.lluncamp2 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 30px;
}
.lluncamp2 img {
object-fit: cover;
width: 100%;
max-height: 200px;
}
<div class="lluncamp2">
<div>
<ul>Laundry room-
<li>Coin operated Washing machine</li>
<li>Tumble dryer</li>
<li>FREE Fridge/ Freezer</li>
<li>Shaving and electricity points</li>
</ul>
</div>
<div>
<iframe src="https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2F%2Fwww.facebook.com%2Fkosmic.suture%2Fvideos%2F1936825236449065%2F&show_text=false&width=560" max-width="560" max-height="314" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write;
encrypted-media; picture-in-picture; web-share" allowFullScreen="true"></iframe></div>
<div>Ample field space to enjoy and play</div>
<div>Chemical disposal point</div>
<div>FREE hot water in both the showers and dishwashing room</div>
<div>Coin operated launderette</div>
</div>
我需要这方面的帮助 <iframe>
,我无法插入到网格布局中。除了这个网格布局,我可以将 <iframe>
插入到网站的每个部分。
感谢您的帮助。
.lluncamp2 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 30px;
}
.lluncamp2 img {
object-fit: cover;
width: 100%;
max-height: 200px;
}
<div class="lluncamp2">
<div>
<ul>Laundry room-
<li>Coin operated Washing machine</li>
<li>Tumble dryer</li>
<li>FREE Fridge/ Freezer</li>
<li>Shaving and electricity points</li>
</ul>
</div>
<div>
<iframe src="https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2
F%2Fwww.facebook.com%2Fkosmic.suture%2Fvideos%2F1936825236449065%2F&show_text=false&width=560" max-width="560" max-height="314" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write;
encrypted-media; picture-in-picture; web-share" allowFullScreen="true"></iframe></div>
<div>Ample field space to enjoy and play</div>
<div>Chemical disposal point</div>
<div>FREE hot water in both the showers and dishwashing room</div>
<div>Coin operated launderette</div>
</div>
如果那是您的实际 HTML,那么问题出在 iframe 标记的 src 属性上的换行符。如果我将您的 iframe 更改为:
,它对我来说运行良好.lluncamp2 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 30px;
}
.lluncamp2 img {
object-fit: cover;
width: 100%;
max-height: 200px;
}
<div class="lluncamp2">
<div>
<ul>Laundry room-
<li>Coin operated Washing machine</li>
<li>Tumble dryer</li>
<li>FREE Fridge/ Freezer</li>
<li>Shaving and electricity points</li>
</ul>
</div>
<div>
<iframe src="https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2F%2Fwww.facebook.com%2Fkosmic.suture%2Fvideos%2F1936825236449065%2F&show_text=false&width=560" max-width="560" max-height="314" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write;
encrypted-media; picture-in-picture; web-share" allowFullScreen="true"></iframe></div>
<div>Ample field space to enjoy and play</div>
<div>Chemical disposal point</div>
<div>FREE hot water in both the showers and dishwashing room</div>
<div>Coin operated launderette</div>
</div>