Change width/height in CSS

Hi, so I’ve been trying to change the width/height of an image in CSS in Visual Code studio and I have had no luck. Here is the HTML and CSS code:

Thank you!

HTML:

<!DOCTYPE html>
<head>
    <link rel="googlecss" href="google.css"
</head>
<body>
    <img class="image" src="https://cdn.vox-cdn.com/thumbor/Pkmq1nm3skO0-j693JTMd7RL0Zk=/0x0:2012x1341/1200x800/filters:focal(0x0:2012x1341)/cdn.vox-cdn.com/uploads/chorus_image/image/47070706/google2.0.0.jpg"/>
</body>
</html>

CSS:

.image {
    width: 300px;
    height:300px;

}

add the missing >


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.