我试图让这两张图片和两段文字(Facebook和Instagram)在一行上彼此相邻.请看下面的图片.这不是我的代码,所以我不知道从哪里开始.
它将在电子邮件中使用,所以这就是为什么所有的CSS样式都必须是内联的。
<tr style='background-color: #1F3466;'>
<td style='background-color: #1F3466;'>
<footer style='background-color: #18A5A7;'>
<h2 style='margin-left: 25px;font-family: sans-serif; color: aliceblue;'>Fique bem informado! </h2>
<h3 style='margin-left: 25px;font-family: sans-serif; color: aliceblue;'>Acompanhe também o Grupo São Cristóvão Saúde nas redes sociais: </h3>
<Footer style='display: flex;flex-direction: row;align-content: center;align-items: center;font-family: sans-serif;'>
<img src='fb_logo.png' style="width:25px; height:25px; margin-left:25px" alt='facebook' /><a style='text-decoration: none;color: aliceblue;' href='https://m.facebook.com/gruposaocristovaosaude/'> Facebook.com/gruposaocristovaosaude</a>
</Footer>
<footer style='display: flex;flex-direction: row;align-content: center;align-items: center;font-family: sans-serif;'>
<img src='inst_logo.png' style="width:25px; height:25px; margin-left:25px" alt='instagram' /><a style='text-decoration: none;color: aliceblue;' href='https://instagram.com/saocristovaosaude/'> @saocristovaosaude</a></footer>
</footer>
</td>
</tr>
<tr>
3条答案
按热度按时间0kjbasz61#
与其两次使用
display: flex
嵌套标记“Footer”,只需将第二个标记的内容移动到第一个标记中。就像这样。
另外,作为一个列表的变化,使这对你来说更容易:
footer
标签,您的文档应该只包含其中一个。iezvtpos2#
您可以将这两个元素放在单独的div中,并将它们嵌套在父div d-flex flex-row中。https://getbootstrap.com/docs/4.0/utilities/flex/
deyfvvtc3#
这就是你所追求的。混合/海绵方法,不依赖于媒体查询进行堆叠。你的内部两列([Content goes here])将具有每列的内容。现在运行代码时不会显示单词,因为父td具有
font-size:0;
。请确保为每列添加内联样式。