Home > Back-end >  Css/html: Unable to change the height on this div
Css/html: Unable to change the height on this div

Time:12-17

Hey, everyone! I'm having issues with changing the height of this container in the .top-container div I created. I can change the width just fine but the height won't change. Can someone help please?

CodePudding user response:

You have got a typo in your HTML code.

<div >

Remove this ; to correctly target the class in your CSS.

CodePudding user response:

Because you've used instead of this as you've used ".top-container" in CSS not .top-container; . Avoid using ;(semicolon) in class.

  • Related