- In my desktop breakpoint, the cards seem to be too big and compressed, and I don't know exactly how to deal with it
- Any advice is welcome
Latest solutions
Responsive Four Cards Page
#sass/scss#accessibilitySubmitted 6 months agoAny enhancements to the code.
Responsive preview item page
#bootstrap#sass/scssSubmitted 6 months agobreakpoints and layout structure
blog-preview-card's solution Accessibility Friendly
#accessibility#sass/scssSubmitted 7 months ago"The use of rem and accessibility I think I did not use them the right way."
Latest comments
- @Lazur05Submitted 5 months agoWhat specific areas of your project would you like help with?@Abo3bazezPosted 5 months ago
it would be better if you but
height : fit-content
on the cards1 - @HamzaMasmoudiSubmitted over 1 year ago
- @Lazur05Submitted 6 months agoWhat challenges did you encounter, and how did you overcome them?
The first challenge was adding a distance between list markers and text. I found a solution in Stack overflow page.
The second challenge was a nutrition table, where I couldn't make an underline below the nutrition value. I decided to add 4 tables for every single nutrition value and add div with underline class under every of the tables.
What specific areas of your project would you like help with?In the instructions section, the wrapped text is under the list number, which shouldn't be there, but I can't find a solution for this problem
@Abo3bazezPosted 6 months agoYou have done a good job with the challenges you have faced. I have some advice to offer:
1.Nutrition Table Problem
- You don’t have to create 4 separate tables, or even a table for the nutrition facts. Instead, you can use a layout like this and style it using Flexbox:
html <div class="table"> <div class="box border-1"> <div class="key">Calories</div> <div class="value">277kcal</div> </div> <div class="box border-1"> <div class="key">Carbs</div> <div class="value">0g</div> </div> <div class="box border-1"> <div class="key">Protein</div> <div class="value">20g</div> </div> <div class="box"> <div class="key">Fat</div> <div class="value">22g</div> </div> </div>
Then, use Flexbox to style it:
css .table .box { display: flex; justify-content: space-around; }
2.Wrapped Text Under the List Number
- To prevent the text from wrapping under the list number, wrap the entire text in
<p>
tags like this:
html <ul> <li> <p><span>Total: </span>Approximately 10 minutes</p> </li> <li> <p><span>Preparation: </span>5 minutes</p> </li> <li> <p><span>Cooking: </span>5 minutes</p> </li> </ul>
Marked as helpful1 - @SultanFarrelSubmitted over 2 years ago@Abo3bazezPosted 6 months ago
Using rem and em instead of
px
in CSS offers significant advantages, especially when it comes to responsive design, accessibility, and maintainability. Here’s some feedback on the benefits of adopting rem and em units:Advantages: 1.Responsive Typography:
rem
andem
are relative units, making it easier to create scalable layouts. When users adjust browser settings (e.g., zoom or base font size), designs based on rem/em scale appropriately, whereas px-based designs remain fixed.2.Accessibility:
Relative units like rem and em respect user preferences, especially for those with visual impairments who adjust their base font size for better readability. Designs using
px
ignore such user-defined settings, potentially causing readability issues.3.Consistency Across Devices:
rem
andem
units ensure consistent rendering across various devices and screen sizes. For example, usingrem
for layout dimensions allows elements to scale based on a user’s default font size, creating a more fluid and adaptable design.4.Easier Scaling of Elements:
By using
rem
for root-level elements andem
for nested elements, you can control the scaling of individual components more effectively. This flexibility is helpful for modular design systems, where you want components to be flexible and adapt to their context.5.Maintaining Proportions:
Using relative units helps maintain proportions between text sizes and other layout elements (like padding, margins, etc.), which becomes crucial for responsive designs. This eliminates the need to manually adjust pixel values for different breakpoints.
1