소스코드
<!DOCTYPE html> <html> <head> <style> html{border:1px solid gray;} div{ border:5px solid tomato; margin:10px; } #me{ position: relative; /*static = 정적으로, relative = 상대적으로*/ left:60px; top:100px; } </style> </head> <body> <div id="other">other</div> <div id="parent"> parent <div id="me">me</div> </div> </body> </html> |
'웹(클라이언트) > CSS' 카테고리의 다른 글
기본 CSS(파일) (0) | 2021.10.06 |
---|---|
신문기사 같은 web Page(multiColumn) (0) | 2021.09.27 |
media Query(화면크기에 따라 변하는 web page) (0) | 2021.09.27 |
inline box지정 (0) | 2021.09.27 |
특정 id 또는 class 내부의 tag만 기능 지정 방법 (0) | 2021.09.27 |