gpt4 book ai didi

html - 水平居中嵌入谷歌文档?

转载 作者:太空宇宙 更新时间:2023-11-04 13:13:22 25 4
gpt4 key购买 nike

我是 html 和 css 的新手,一直在通过 HTML for dummies 学习。

无论如何,我想知道如何让嵌入的谷歌文档水平居中。

<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body bgcolor="#414141">
<title>Rules Page</title>
<div class="center">
<iframe width='85%' height='100%' src="https://docs.google.com/document/d/1G1xhqhSK2Ge8diyXELZ3cNvFJj-5wK-0_1VMjCfQR_I/pub?embedded=true"> </iframe>
</div>
</body>

div#iframe-wrapper iframe {
position: absolute;
top: 0;
bottom: 0;
left: 0;
margin: auto;
right: 100px;
height: 100%;
width: 100%;
}

最佳答案

这是一种方法

.center iframe {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body bgcolor="#414141">
<title>Rules Page</title>
<div class="center">
<iframe width='85%' height='100%' src="https://docs.google.com/document/d/1G1xhqhSK2Ge8diyXELZ3cNvFJj-5wK-0_1VMjCfQR_I/pub?embedded=true"> </iframe>
</div>
</body>

关于html - 水平居中嵌入谷歌文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30960695/

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