이 글에서는 고정된 왼쪽과 적응적인 오른쪽의 두 가지 구현 방법을 주로 소개합니다. 웹 페이지 레이아웃을 배우는 데 많은 도움이 될 것입니다.
첫 번째 방법:
<!DOCTYPE> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .one { position: absolute; height: 200px; width: 300px; background-color: blue; } .two { height: 200px; margin-left: 300px; background-color: red; } </style> </head> <body> <p class="one"></p> <p class="two">第一种方法</p> </body> </html>
두 번째 방법:
<!DOCTYPE> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .one { float:left; height: 200px; width: 300px; background-color: blue; } .two { overflow: auto; height: 200px; background-color: red; } </style> </head> <body> <p class="one"></p> <p class="two">第二种方法</p> </body> </html>
더 많은 왼쪽 고정 및 오른쪽 적응 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!