標題:
Box Model 設計-邊框練習(一)
[打印本頁]
作者:
陳育霖
時間:
2023-8-29 03:00
標題:
Box Model 設計-邊框練習(一)
本帖最後由 陳育霖 於 2023-8-29 03:02 編輯
請依下圖完成網頁設計。
字體為: Arial、sans-serif,顏色為:#ccc、#2196F3、#f8f8f8、#333、#444、#555、#fff,字體大小為:14、16、24、40px
[attach]16361[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡幸融
時間:
2023-8-29 16:59
<html>
<head>
<style>
header {
background-color: #555;
color: #fff;
padding: 5px 0px;
text-align: center;
font-size: 24px;
}
nav a {
text-decoration: none;
color: #fff;
margin: 15px 5px;
font-size: 16px;
}
nav {
background-color: #444;
text-align: center;
}
body{
background-color: #f0f0f0;
}
.boxcontainer {
display: flex;
flex-wrap: wrap;
}
.box{
background-color: #fff;
margin: 2%;
padding: 20px;
width: 40%;
box-shadow: 2px 2px 4px #444;
}
</style>
</head>
<header>
旅遊景點推薦
<nav>
<a href="">首頁</a>
<a href="">景點介紹</a>
<a href="">旅遊指南</a>
<a href="">關於我們</a>
</nav>
</header>
<body>
<div class="boxcontainer">
<div class="box">
<img src="" alt="圖片">
<h2>美麗海灘</h2>
<p>夏威夷,美國</p>
<p>藍天、白沙灘</p>
</div>
<div class="box">
<img src="" alt="圖片">
<h2>美麗海灘</h2>
<p>夏威夷,美國</p>
<p>藍天、白沙灘</p>
</div>
<div class="box">
<img src="" alt="圖片">
<h2>美麗海灘</h2>
<p>夏威夷,美國</p>
<p>藍天、白沙灘</p>
</div>
<div class="box">
<img src="" alt="圖片">
<h2>美麗海灘</h2>
<p>夏威夷,美國</p>
<p>藍天、白沙灘</p>
</div>
</div>
</body>
</html>
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2