How make an image Responsive in the project assignment

Tell us what’s happening:
Describe your issue in detail here.
** How can I go about making the img element should responsively resize, relative to the width of its parent element, without exceeding its original size.

Your code so far

<!DOCTYPE>
<html lang="en-us">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title id="title">Tribute Page</title>  
  <style>
    #main {
      background-color: burlywood;
      color: black;
      padding: 30px;
      text-align: center;

    }
    #title {
      color: black;
    }
    #img-div {
      max-width: auto;
      #img-caption {
        text-align: center;
        font: optional;
        
      }
    }
    #image {
      display: center;
      
    }
    #Tribute-Link {
      color: rgb(88, 88, 255);
      background-color: dimgray;
      font-family: Georgia, 'Times New Roman', Times, serif;
    }
    #Tribute-info {
      text-align: center;
      font-family: fantasy;

    }

  </style>
  
  </head>
  <main id="main">
    <h1>Dr. Norman Borlaug</h1>
    <p>The man who saved a billion lives</p>
    <div id="img-div">
      <img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg" id="image">
      <br>
      <br>
      <img-caption id="img-caption"><b>Dr. Norman Borlaug, third from the left, trains biologists in Mexico on how to increase wheat yields - part of his life-long war on hunger.</b></img-caption>
    </div>
  </main>
         <h2>Here's a time line of Dr. Borlaug's life:</h2> 
     
       <p id="tribute-info">
         1914 - Born in Cresco, Iowa
        1933 - Leaves his family's farm to attend the University of Minnesota, thanks to a Depression era program known as the "National Youth Administration"
        1935 - Has to stop school and save up more money. Works in the Civilian Conservation Corps, helping starving Americans. "I saw how food changed them", he said. "All of this left scars on me."
        1937 - Finishes university and takes a job in the US Forestry Service
        1938 - Marries wife of 69 years Margret Gibson. Gets laid off due to budget cuts. Inspired by Elvin Charles Stakman, he returns to school study under Stakman, who teaches him about breeding pest-resistent plants.
        1941 - Tries to enroll in the military after the Pearl Harbor attack, but is rejected. Instead, the military asked his lab to work on waterproof glue, DDT to control malaria, disinfectants, and other applied science.
        1942 - Receives a Ph.D. in Genetics and Plant Pathology
        1944 - Rejects a 100% salary increase from Dupont, leaves behind his pregnant wife, and flies to Mexico to head a new plant pathology program. Over the next 16 years, his team breeds 6,000 different strains of disease resistent wheat - including different varieties for each major climate on Earth.
        1945 - Discovers a way to grown wheat twice each season, doubling wheat yields
        1953 - crosses a short, sturdy dwarf breed of wheat with a high-yeidling American breed, creating a strain that responds well to fertilizer. It goes on to provide 95% of Mexico's wheat.
        1962 - Visits Delhi and brings his high-yielding strains of wheat to the Indian subcontinent in time to help mitigate mass starvation due to a rapidly expanding population
        1970 - receives the Nobel Peace Prize
        1983 - helps seven African countries dramatically increase their maize and sorghum yields
        1984 - becomes a distinguished professor at Texas A&M University
        2005 - states "we will have to double the world food supply by 2050." Argues that genetically modified crops are the only way we can meet the demand, as we run out of arable land. Says that GM crops are not inherently dangerous because "we've been genetically modifying plants and animals for a long time. Long before we called it science, people were selecting the best breeds."
        2009 - dies at the age of 95.
      </p>
     
       <a id="tribute-link" href=https://codepen.io/freeCodeCamp/full/zNqgVx target="_blank" >Tribute-Link</a>
   
  
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 Edg/96.0.1054.62

Challenge: Build a Tribute Page

Link to the challenge:

Pls check this article, it should answer your query:

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 (’).

@Justman, when a test fails click the red button to see which test(s) are failing and text to help you correct the issue.
Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.

The failing message says

The <img> element should responsively resize, relative to the width of its parent element, without exceeding its original size.
Try using the "max-width" style property : expected 'none' to not equal 'none'
AssertionError: Try using the "max-width" style property : expected 'none' to not equal 'none'

Do you understand what the test is looking for and why it fails.

On a side note, do not try and replicate the sample projects. They show one way the projects can be completed. The instructions say to make yours “functionally similar” and to “give it your own style”.

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