Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Css level 8 lesson 1 my question in description

<!DOCTYPE html>
<html>
<head>
<title>CSS Images</title>
<style>
/img {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 20px;
}
/ " here i remove comment tag but when i try to submit showing like you remove comments . i was try so many times"
</style>
</head>
<body>
<img src="st.jpg" alt="image">
</body>
</html>
by

1 Answer

kshitijrana14
Try this one:

<!DOCTYPE html>
<html>
<head>
<title>CSS Images</title>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 20px;
}
</style>
</head>
<body>
<img src="st.jpg" alt="image">
</body>
</html>

Login / Signup to Answer the Question.