gpt4 book ai didi

html - 我应该为我的网站使用什么位置[需要建议]

转载 作者:行者123 更新时间:2023-11-28 04:28:06 27 4
gpt4 key购买 nike

所以我目前正在我的网站上工作......我在尝试向页面添加图像时遇到了问题。所以我通过添加这个开始了主页-

#titleOne, #paraOne, #paraTwo, #paraThree{
text-align: center;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<center>
<h1 id="titleOne">Hello!</h1>
<p id="paraOne">This is my first website!</p>

<hr>

<p id="paraTwo">Hopefully this isn't too boring :/ stay and you might like what you see in the future!</p>
<p id="paraThree">Fact: I will not stop until I get it done.</p>

</center>
</body>
</html>

效果很好,一切都在中心,看起来很棒!但是现在,当我尝试添加图像并将其放在中心标签中时,它会添加到中心。我不想要那个...我希望图像进入屏幕的右上角,但有几个百分比的间隙,这样它就不会卡在屏幕的一侧。我似乎无法做到这一点,因为要做到这一点,我必须做出 position: absolute;当我这样做时,一切都变得不合时宜。你们会推荐什么?这是图片代码。

#img {
/*position: absolute;*/
width: 100px;
height: 100px;
border-radius: 100%;
-webkit-animation: fadein 2s;
}

@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
<img id="img" src="imgs/meFive.JPG" alt="My picture" >

谢谢!

最佳答案

你不应该把图片放在中心标签中。你应该放在中心标签外面

img {
width: 100px;
height: 100px;
border-radius: 100%;
-webkit-animation: fadein 2s;
position: absolute;
top: 0px;
right: 0px;
}

关于html - 我应该为我的网站使用什么位置[需要建议],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41868704/

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