#Starting out with html/css

6 messages · Page 1 of 1 (latest)

upper sluice
#

So i have just started out my coding journey and i was wondering how to move single items in one row to the side ? (windows)

echo turret
#

probably a margin-left: auto; margin-right: 0px

#

But there's a reason I do the absolute minimum for anything frontend related

foggy thistle
#
ul:last-child {
  margin-left: auto;
  margin-right: 0px;
}

Like rob said

#

*not rob

echo turret