我正在尝试建立一个响应式网站,一切正常,除了云中的文本显示为“ heyyy!...”(如您所见)。在下图中,当我不缩放时是可以的,我喜欢这种行为
但是当我放大时,我最终会看到这种丑陋的行为
我不知道该如何解决这个问题,我试图将机器人图像,语音云和文本的整个单元放在div
中,并在其中应用位置relative
div
和位置absolute
到其中所有项目的位置,但没有用,请提供任何解决方案,并谢谢您
这是我的代码:
.header-box {
width: 100vw;
height: 90vh;
background-color: #33cccc;
-webkit-clip-path: polygon(0 0, 100% 0%, 100% 76%, 0% 100%);
clip-path: polygon(0 0, 100% 0%, 100% 76%, 0% 100%);
position: relative;
}
.main-nav {
display: flex;
list-style-type: none;
justify-content: space-around;
width: 100vw;
text-align: right;
}
.main-nav__link {
text-decoration: none;
font-family: 'Roboto', sans-serif;
font-weight: bold;
color: #ffffcc;
}
.text {
font-family: Roboto;
font-weight: bold;
font-size: 20px;
color: #ffffcc;
height: 50vh;
display: flex;
align-items: center;
justify-content: center;
align-content: center;
}
.name {
font-size: 1rem;
display: block;
animation-name: moveInLeft;
animation-duration: 2s;
}
.vector-1{
position: relative;
height: 37vh;
}
.img-dialogue {
width: 60%;
position: absolute;
left: 20%;
bottom: 57%;
z-index: -1;
}
.dialogue {
font-family: Roboto;
color: #33cccc;
position: absolute;
top: 24px;
left: 55px;
display: inline-block;
}
.img-header {
width: 60%;
position: absolute;
bottom: 9px;
}
<div class="header-box">
<ul class="main-nav">
<li class="main-nav__items"><a class="main-nav__link" href="#">About</a></li>
<li class="main-nav__items"><a class="main-nav__link" href="#">Projects</a></li>
<li class="main-nav__items"><a class="main-nav__link" href="#">Contact</a></li>
</ul>
<div class="text">
<h1 class="big-heading"><span class="name">M.Amine Elwere</span> Front-end <br /> Web developer</h1>
</div>
<div class="vector-1">
<img src="../vector/Png for the web/header minou.png" data-aos="fade-up" class="img-header" alt="">
<img src="../vector/Png for the web/png-dialogue-2.png" data-aos="fade-right" data-aos-duration="4000" class="img-dialogue" alt="">
<h1 class="dialogue" data-aos="fade-up" data-aos-duration="5000">HEYY!...</h1>
</div>
</div>
答案 0 :(得分:0)
我认为您的问题是由于缺少固定的字体大小引起的。当浏览器呈现您的字体时,它将呈现为与浏览器大致相同的大小。我建议,如果文本是由您而不是图像定位的,则使用值vw或vh。这些对于响应式设计非常有用,并且由浏览器大小(类似于百分比)启动。然后尝试使用vw或vh调整字体和位置的大小,您应该一切顺利! 这是CSS-Tricks上关于视口单位的文章-https://css-tricks.com/fun-viewport-units/