gpt4 book ai didi

html - 如何定位一些文本?

转载 作者:太空宇宙 更新时间:2023-11-03 21:58:23 25 4
gpt4 key购买 nike

对于这个新手和愚蠢的问题,我深表歉意,但我对 CSS 知之甚少,而且我不知道如何设计我的网站的样式。这是我的代码:

HTML( Twig ):

<div class="wrap">
<div>
<img class="birthday" src="http://www.clker.com/cliparts/1/d/a/6/11970917161615154558carlitos_Balloons.svg.med.png">
<div class="try">
This friends have brithday today:
{% for bd in birthdays %}

<p>
<a href="{{ path('friend_id', {'id': bd.id}) }}">{{ bd.name }}</a>
<span class="years">
({{ bd.years }} years)
</span>
</p>

{% endfor %}

</div>

</div>
</div>

CSS:

body {
background-color: #FFFFF1;
text-align: center;
font-size: 17px;
font-family: Tahoma, Geneva, sans-serif;
}

p {
margin: 10px;
}

a {
text-decoration: none;
color: #6a9211;
}

a:hover {
text-decoration: underline;
}

.wrap {
width: 700px;
margin: auto;
}

.birthday {
width: 49px;
height: 80px;
float: left;
margin-left: 150px;
display: block;
}

.try {
display: block;
margin-right: 150px;
margin-bottom: 50px;
}

.years {
font-size: 12px;
}

this是我得到的。我要修复的是 MariaPeter 显示在 AnnaJohn 下,他们都是 4在 This friends have birthday today: 标签下居中。我知道这是因为图像,但我不知道如何让它看起来不错。 :(

求助!提前致谢!

最佳答案

试试这个:

.try {
width: 500px;
float: right;
margin-right: 150px;
margin-bottom: 50px;
}

关于html - 如何定位一些文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12193731/

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