HTML ÏìӦʽ Web Éè¼Æ
ʲôÊÇÏìӦʽ Web Éè¼Æ£¿
- RWD Ö¸µÄÊÇÏìӦʽ Web Éè¼Æ£¨Responsive Web Design£©
- RWD Äܹ»ÒԿɱä³ß´ç´«µÝÍøÒ³
- RWD ¶ÔÓÚÆ½°åºÍÒÆ¶¯É豸ÊDZØÐèµÄ
´´½¨Äú×Ô¼ºµÄÏìӦʽÉè¼Æ
´´½¨ÏìӦʽÉè¼ÆµÄÒ»¸ö·½·¨£¬ÊÇ×Ô¼ºÀ´´´½¨Ëü£º
<!DOCTYPE html> <html lang="en-US"> <head> <style> .city { float: left; margin: 5px; padding: 15px; width: 300px; height: 300px; border: 1px solid black; } </style> </head> <body> <h1>W3School Demo</h1> <h2>Resize this responsive page!</h2> <br> <div class="city"> <h2>London</h2> <p>London is the capital city of England.</p> <p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p> </div> <div class="city"> <h2>Paris</h2> <p>Paris is the capital and most populous city of France.</p> </div> <div class="city"> <h2>Tokyo</h2> <p>Tokyo is the capital of Japan, the center of the Greater Tokyo Area, and the most populous metropolitan area in the world.</p> </div> </body> </html>
ʹÓà Bootstrap
ÁíÒ»¸ö´´½¨ÏìӦʽÉè¼ÆµÄ·½·¨£¬ÊÇʹÓÃÏÖ³ÉµÄ CSS ¿ò¼Ü¡£
Bootstrap ÊÇ×îÁ÷ÐеĿª·¢ÏìӦʽ web µÄ HTML, CSS, ºÍ JS ¿ò¼Ü¡£
Bootstrap °ïÖúÄú¿ª·¢ÔÚÈκγߴ綼Íâ¹Û³öÖÚµÄÕ¾µã£ºÏÔʾÆ÷¡¢±Ê¼Ç±¾µçÄÔ¡¢Æ½°åµçÄÔ»òÊÖ»ú£º
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> </head> <body> <div class="container"> <div class="jumbotron"> <h1>W3School Demo</h1> <p>Resize this responsive page!</p> </div> </div> <div class="container"> <div class="row"> <div class="col-md-4"> <h2>London</h2> <p>London is the capital city of England.</p> <p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p> </div> <div class="col-md-4"> <h2>Paris</h2> <p>Paris is the capital and most populous city of France.</p> </div> <div class="col-md-4"> <h2>Tokyo</h2> <p>Tokyo is the capital of Japan, the center of the Greater Tokyo Area, and the most populous metropolitan area in the world.</p> </div> </div> </div> </body> </html>
ÈçÐèѧϰ¸ü¶àÓÐ¹Ø Bootstrap µÄ֪ʶ£¬ÇëÔĶÁÎÒÃÇµÄ Bootstrap ½Ì³Ì¡£