gpt4 book ai didi

html - 图像不在表格容器中

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

enter image description here not in container

我试图让图片保留在左栏中,但它似乎没有保留。如您所见,它悬停在 table 上方。我该怎么做才能让它留在表格内?

<table align="center" style="width:550px" id="table" cellpadding="5">
<tr>
<th style="text-align: left" rowspan="2">
<img src="avi.png" alt="" id="avatar" />
</th>
<th style="text-align: left">
<h1 id="hello">My Resume</h1>
</th>
</tr>
<tr>
<td style="text-align: left">
<p>Hello this is a crazy little test that i am doing to see if this code works</p>
</td>
</tr>
</table>

最佳答案

如果您特别想要像您给出的示例那样的东西,那么使用表格是一种笨拙的旧方法。我建议使用 flexbox,这是一种排列事物并使它们看起来不错的简单方法。

这是一个例子:

body {
font-family: 'Helvetica Neue', Helvetica, sans-serif;
}
.resume {
display: flex;
align-items: center;
justify-content: center;
}
.resume-picture {
border: 10px solid #1976D2;
border-radius: 50%;
background: #f3f2f1;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
height: 175px;
}
.resume-content {
padding: 0 15px;
}
.resume-content h2 {
color: #1976D2;
margin-top: 0;
}
.resume-content p {
color: #333;
margin: 0;
}
<div class="resume">
<img class="resume-picture" src="https://avatars2.githubusercontent.com/u/3534427?v=3" />
<div class="resume-content">
<h2>My Resume</h2>
<p>Hello this is a crazy little test that i am doing to see if this code works.
<br>Hello this is a crazy little test that i am doing to see if this code works.
<br>Hello this is a crazy little test that i am doing to see if this code works.</p>
</div>
</div>

我希望这就是您正在寻找的东西。

关于html - 图像不在表格容器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39783624/

27 4 0
文章推荐: css - Wordpress 页眉宽度(Genesis、Foodie Pro)
文章推荐: c++ - arduino 低 i2c 读取速度;
文章推荐: c++ - 防止作用域枚举可复制/可移动?
文章推荐: html -
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com