HTML + CSS -> https://jsfiddle.net/cLz7vgxo/

First of all let me tell you I hate web development. It’s so confusing.

I am trying to render a list of emojis here. For context, “shortcode” means the text like :emoji-name: and “keywords” refers the text below the shortcode.

The code I forked from uses a grid to do this. This worked fine in their case. But I would like to show the emoji’s keywords below the shortcode, just as an exercise for myself.

The grid renders fine until the point where the keywords text become too long. In the above example, you can see it with the :wikipedia: emoji. I would like the shortcode and keywords to be to the right of the emoji image but it moves to below the image and because I am a stupid dumb idiot I have no clue how to fix this.

I understand that it’s not possible to show the keywords elegantly if they become too long but I am open to any options like cutting them off with ellipsis, or having a scrollbar, or any other way really. I am not picky. I just need help.

  • Vent@lemm.ee
    link
    fedilink
    arrow-up
    4
    ·
    1 month ago

    I’m on mobile, so I can’t test out any specifics, but this is typically handled with overflow and text-overflow. With those two, plus maybe playing with width, you should be able to achieve what you’re looking for.

    CSS can be really hard and unruly sometimes, even for professional web devs with years of experience. It doesn’t make you dumb. Struggling with stuff like this is exactly what everyone goes through as an essential step of the learning process.