gpt4 book ai didi

html - 使用 CSS 将 Google 表单居中

转载 作者:太空狗 更新时间:2023-10-29 14:51:18 26 4
gpt4 key购买 nike

我在我的网站上嵌入了一个 google 表单,它被包裹在一个 div 中。我尝试使用 CSS 将其居中,但它不起作用。有没有办法完成这个任务?

我的代码:

#googleForm {
margin-left: auto;
margin-right: auto;
}
<div id="googleForm">	
<iframe src="https://docs.google.com/forms....></iframe>
</div>

最佳答案

您可以将 text-align: center 添加到 ID 为 googleForm 的元素。您也可以安全地删除 margin-leftmargin-right:

#googleForm {
/*margin-left: auto;/*
/*margin-right: auto;*/
text-align: center;
}
<div id="googleForm">
<iframe src="https://docs.google.com/forms....></iframe>
</div>

如果你想使用 margin: 0 auto 你必须设置元素的宽度:

#googleForm {
width: 304px;
margin: 0 auto;
}
<div id="googleForm">
<iframe src="https://docs.google.com/forms....></iframe>
</div>

关于html - 使用 CSS 将 Google 表单居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28110211/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com