如何使用CSS在屏幕像素中定义度量?

要使用CSS在屏幕像素中定义度量,请使用px单位。

让我们看一个例子:

<html>
   <head>
   </head>
   <body>
      <div style = "position:relative;left:90px;top:3px;background-color:yellow;">
         This div has relative positioning.
      </div>
   </body>
</html>