
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Define Measurement in Screen Pixels with CSS
To define a measurement in screen pixels with CSS, use the px unit.
Let us see an example:
<html> <head> </head> <body> <div style = "position:relative;left:90px;top:3px;background-color:yellow;"> This div has relative positioning. </div> </body> </html>
Advertisements