Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
#nav ul li:hover ul li a:hover {
    background-color: #ebebeb;
}
by Valeri Tandilashvili
4 years ago
0
CSS
Learn CSS
1
Removing element from the dom
by Valeri Tandilashvili
4 years ago
0
CSS
properties
Learn CSS
1
One way to center an image horizontally
.img_container {
    text-align: center;
}
Another way of doing this:
img {
    display: block;
    margin: 0 auto;
}
https://youtu.be/jiA7BRTL1A0?t=201
by Valeri Tandilashvili
4 years ago
0
CSS
Learn CSS
1
div.inner {
    width: 700px;
    margin: auto;
}
by Valeri Tandilashvili
4 years ago
0
CSS
Learn CSS
1
img {
    max-width: 100%;
    height: auto;
}
by Valeri Tandilashvili
4 years ago
0
CSS
responsive design
Learn CSS
1
@media screen and (max-width: 500px) {
    div.mobile-collapse {
        width: auto;
        float: none;
        margin-right: 0;
    }
}
by Valeri Tandilashvili
4 years ago
0
CSS
responsive design
Learn CSS
1
@media screen and (max-width: 500px) {
    .hide-mobile {
        display: none;
    }
}
by Valeri Tandilashvili
4 years ago
0
CSS
responsive design
Learn CSS
1
nav ul li {
    width: 25%;
    border-bottom: 1px solid #bababa;
}
by Valeri Tandilashvili
4 years ago
0
CSS
responsive design
Learn CSS
1
@media screen and (max-width: 620px) {
    nav ul li {
        width: 33%;
    }
}
by Valeri Tandilashvili
4 years ago
0
CSS
responsive design
Learn CSS
1
@media screen and (max-width: 500px) {
    nav ul li {
        width: 50%;
        font-size: 120%;
    }
}
by Valeri Tandilashvili
4 years ago
0
CSS
responsive design
Learn CSS
1
Results: 1580