this post was submitted on 26 Mar 2024
4 points (83.3% liked)

Programmer Humor

31217 readers
36 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 

top 3 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 3 months ago

I refuse to believe that's CSS. What is that colon at the end even?

[–] [email protected] 1 points 3 months ago* (last edited 3 months ago)
#moustache {
  position: absolute;
  bottom: 10px;
  margin: 0 auto;
}

If that doesn't work:

#moustache {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

Relative positioning is preferred but not always available if the parent face is positioned absolutely.

Edit: adjusted bottom from 0 -> 10px since 0 would be at the bottom of the chin but there is obviously some padding to bring it nearer the lip

[–] [email protected] 1 points 3 months ago

came to hate on this code; it’s not valid lol