RoelofWobben / card-component

my solution to the card component challenge of front-end mentor
https://roelofwobben.github.io/card-component/roelof.html
0 stars 0 forks source link

html #2

Open CactusNP21 opened 1 year ago

CactusNP21 commented 1 year ago
`<h2>Sedans</h2>
            <p>
                Choose a sedan for its affordability and excellent fuel economy. Ideal for cruising in the city
                or on your next road trip.
            </p>
            <a href="#" class="btn btn_sedan">Learn more</a>`

i would unite it in container and similiar

RoelofWobben commented 1 year ago

How do you mean that as far as I see it , I have put it into this container : <div class="card sedans">

CactusNP21 commented 1 year ago

How do you mean that as far as I see it , I have put it into this container : <div class="card sedans">

I mean i would group text apart of img

RoelofWobben commented 1 year ago

oke

You mean something like

<h2>Sedans</h2>
  <div class="text">
        <p>
                Choose a sedan for its affordability and excellent fuel economy. Ideal for cruising in the city
                or on your next road trip.
        </p>
  </div>
  <div class="image">
            <a href="#" class="btn btn_sedan">Learn more</a>`
   </div>