フロントエンドページのデザイン
1、フロントエンド ページで div を設計します
新しいindex.php ファイルを作成します
<!doctype html> <html> <head> <meta charset="utf-8"> <title>图形计算器</title> </head> <body> <div id="contains"> <h1>简易图形计算器</h1> <a href=''>矩形</a> | <a href=''>三角形</a> | <a href=''>圆形</a> | <a href=''>球体</a> <hr> <?php echo "请选择一个图形"; } ?> </div> </body> </html>
実行中のエフェクトは次の図に示すとおりです。
##2、div スタイルを変更します
<style> * { margin: 0px; padding: 0px; } #contains { width: 500px; margin: 20px auto; background: skyblue; text-align: center; } h1 { width: 500px; height: 60px; } a { font-size: 20px; text-decoration: none; } </style>
実行結果は次のとおりです: