CSS-Code;
}
1. If the browser width is less than or equal to 600px, hide the element div class example
@media screen and (max-width: 600px) {
div.example {
display: none;
}
}
Full code:
TipsMake.com is a social network about science and technology, expanding content to
meeting members' needs for more technology fields such as electricity
voice, smart device, electronics, computer security .
2. If the browser width is greater than 800px, set the lavender, 400px to 999px background color to lightsalmon, less than 400px then lightblue.
body {
background-color: lightblue;
}
@media screen and (min-width: 400px) {
body {
background-color: lightgreen;
}
}
@media screen and (min-width: 800px) {
body {
background-color: lavender;
}
}
TipsMake.com is a social network about science and technology, expanding content to
meeting members' needs for more technology fields such as electricity
voice, smart device, electronics, computer security .
3. Create a flexible navigation menu that displays multiple interface sizes (displayed horizontally on a large screen and vertically on a small screen):
@media screen and (max-width: 600px) {
.topnav a {
float: none;
width: 100%;
}
}
TipsMake.com is a social network about science and technology, expanding content to
meeting members' needs for more technology fields such as electricity
voice, smart device, electronics, computer security .
Làng Công nghệ
Công nghệ
Cuộc sống
4. Create flexible display columns interface that meets a variety of interface sizes.
/* hiển thị 2 cột thay vì 4 cột mặc định khi màn hình có chiều rộng dưới 920px*/
@media screen and (max-width: 992px) {
.column {
width: 50%;
}
}
/* các cột xếp chồng lên nhau thay vì cạnh nhau khi màn hình có chiều rộng dưới 600px */
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
You resize the browser to see the change:
Some text .
Some text .
Some text .
Some text .
5. Create layout website display flexibly to meet many interface sizes.
Page Title
Knowledge - Experience - FAQ
Using flexible layout.
Làng Công nghệ
Công nghệ
Khoa học
Cuộc sống
TipsMake.com is a social network about science and technology.
YouTube
Forms are an integral part of any kind of website.
In this article, TipsMake.com will show you how to build the section
giao diện hiển thị của một biểu mẫu cơ bản. Giao diện này có thể được làm
khá đẹp mắt với CSS
Attribute selector is the way to select the elements you want to type in
tài liệu HTML dựa vào thuộc tính của một hay nhiều thẻ HTML nào đó.
Attribute selector can select objects without having to
khai báo thêm các Class hoặc ID vào trong thẻ HTML và vẫn có thể hướng
được đến các thành phần đó, giúp code gọn gàng hơn và mạch lạc hơn.