相对定位

Posted chenchen-12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了相对定位相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC"-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
        <style type="text/css" media="screen" id="test">
            .left {
                position: relative;
                left:-20px;
            }
            .right {
                position: relative;
                right:-20px;
            }
        </style>
    </head>
    <body>
        <p>这是一个正常标签位置</p>
        <p class="left">相对于正常位置向左移</p>
        <p class="right">相对于正常位置向右移</p>
        <p>相对定位会按照元素的原始位置对该元素进行移动。</p>
        <p>样式"left:-20px" 从元素的原始左侧位置减去 20 像素。</p>
        <p>样式"left:20px" 向元素的原始左侧位置增加 20 像素。</p>
    </body>

</html>

技术分享图片

 

以上是关于相对定位的主要内容,如果未能解决你的问题,请参考以下文章

相对定位

HTML里面的相对定位的问题

jq怎么获取绝对定位与相对定位的top值?

Selenium Xpath元素无法定位 NoSuchElementException: Message: no such element: Unable to locate element(代码片段

html中按钮不能用相对定位吗?

CSS 绝对定位和相对定位