Skip to content

Latest commit

 

History

History

recipe-page

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Frontend Mentor - Recipe page solution

This is a solution to the Recipe page challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

Screenshot

Desktop

Desktop Screenshot

Mobile

Mobile Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • Mobile-First design
  • Flexbox
  • Grid

What I learned

Adding Border to Table Rows:

I encountered a challenge with adding a border to table rows <tr>. It worked when applied to <td> elements but not to <tr>. After some research, I learned about the border-collapse property, which allows borders to be applied to table rows effectively.

table {
  border-collapse: collapse;
}

tr {
  border: 1px solid #ddd;
}

Useful resources

Author