#Hello can someone help me with html/css

23 messages · Page 1 of 1 (latest)

ripe burrow
#

in css, you have a background propteries, have a look at these: https://www.w3schools.com/cssref/css3_pr_background.php

#

you should be able to get it working with using these

#

you have to use css for that, that's all I can say

#

show that?

#

maybe?

#

what if you take "img" selector away?

#

and just leave ".form"

#

tbh I'm still not sure what you're trying to do, I have to leave for now. But do us all a favour and explain it in more detail what it should look like, there's probably somebody going to help you out, but you need to give more information.

neat gulch
#

Would need to see more of the HTML for the page, it'd be helpful if you could upload it to something like JSFiddle @vivid heath

#
.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px;
}

And talking about styling, this styles every single element with the class=form attribute set

#

Not just some of them, but every single one in your entire HTML

#

I don't think you can with JSFiddle

#

You'd have to use URLs

#

Like this?

#

Yeah, your .form img is messing up the whole thing

#

Use :not(.yeux img) for that, and add in flex-direction: column; to the .yeux img selector

#

.form img:not(.yeux img)

#
#

Also your pseudoselectors have to have double colons

#

::after

#

Where did you add the flex-direction?

#

Add it to the .yeux

#

Sorry, I misspoke on the first selector