iT邦幫忙

2024 iThome 鐵人賽

DAY 28
0

html及css可以達成響應式網頁的功能喔!
html

<section class="content">
    <h2>歡迎來到我們的網站</h2>
    <p>這是一個簡單的響應式網頁範例,能夠根據不同的設備自動調整佈局。</p>
</section>

<footer>
    <p>&copy; 2024 響應式網頁範例</p>
</footer>

css

/* 基本樣式 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}

nav ul li {
display: inline;
margin: 0 15px;
}

nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}

.content {
padding: 20px;
text-align: center;
}

footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}

/* 響應式設計 */
@media (max-width: 768px) {
nav ul li {
display: block;
margin: 10px 0;
}

header, .content, footer {
    padding: 15px;
}

}

@media (max-width: 480px) {
h1 {
font-size: 24px;
}

h2 {
    font-size: 20px;
}

p {
    font-size: 16px;
}

}
但這個有點簡陋~明天呈現完整的網站!


上一篇
DAY27響應式設計怎麼運用在現實生活中~
下一篇
DAY29LocalHost跟H T T P有什麼差?
系列文
一個網頁的誕生!教你從基礎到自行完成設計網站30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言