<div class="container">
<p class="fixed-text">Your fixed text here</p>
</div>
字符串 下面是CSS:
.container {
position: relative; /* This is required to use absolute positioning inside */
width: 100%; /* Set the desired width of the container */
height: 300px; /* Set the desired height of the container */
background-color: #f0f0f0;
}
.fixed-text {
position: absolute;
top: 20px; /* Adjust the top distance as needed */
left: 20px; /* Adjust the left distance as needed */
}
2条答案
按热度按时间bq3bfh9z1#
是的,有一些方法可以使代码中的元素保持在完全相同的位置,而不管视口大小如何,例如position Absolute,Fixed Positioning,Use Fixed Units,Media Queries。
我给予你举个例子:
下面是HTML:
字符串
下面是CSS:
型
通过使用具有固定像素值的绝对定位,无论视口大小或使用的设备如何,文本都将停留在指定的位置。
guicsvcw2#
固定的div将始终保持相同的大小,只需使用min属性即可。
字符串