Home > Blockchain >  Text overlapping on the image
Text overlapping on the image

Time:01-18

The text col-xs-9 col-md-9 overlaps with the image col-xs-3 col-md-3. I tried to include img-responsive in the img src but it doesn't work. I didn't use css in this part of my activity.

 <div >
                        <div >
                    <div class = "row">

                        <div class = "col-xs-3 col-md-3">             
                            <img src = "image.jpg" height = 224 width= 224 >
                            </div>
                        
                        <div class = "col-xs-9 col-md-9">
                            <h1> HELLO!</h1>
                            <p >Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>     
                        </div>
                        </div>
                    </div>
                    </div>

CodePudding user response:

The img-responsive was renamed to img-fluid. Replace the class name and that should solve your problem.

  •  Tags:  
  • Related