10 lines
136 B
CSS
10 lines
136 B
CSS
.avatar .username {
|
|
display: none;
|
|
}
|
|
.avatar:hover .username {
|
|
display: block;
|
|
position: absolute;
|
|
z-index: 1;
|
|
float: left;
|
|
}
|