Help me out | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

Help me out

Hello everyone, I'm trying to make this website and i use new code don't know much about them , therefore i need help to find mistakes (i usually use ai to get code and correct but it make it a mess :/ ) Also,i want the slidebare to be in the extreme right side in the middle not down. I'll be glad in someone can help me out with this code My salutations 🫡 https://sololearn.com/compiler-playground/WLsRmJMw40Jd/?ref=app https://sololearn.com/compiler-playground/WLsRmJMw40Jd/?ref=app

6th Mar 2024, 11:57 AM
Moon-Wolf
Moon-Wolf - avatar
1 Respuesta
+ 4
Try out SoloLearn's web development course and you'll learn to fix code issues. Learn about webpage structure and css style properties. Remember to tidy up your code by gathering all styles together in the <head> section. <head> <style> ... </style> // all styles should go between the opening and closing style tag. </head> To move the sidebar to the right, use the html aside tag. <aside> Content to go aside </aside> Apply this style. aside { width: 30%; padding-left: 15px; margin-left: 15px; float: right; background-color: lightgray; }
6th Mar 2024, 9:31 PM
Chris Coder
Chris Coder - avatar