Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
5
Comments
18
Smita
@Smita-14

All comments

  • Joffen Hopland•50
    @Joffenhopland
    Submitted almost 4 years ago

    Mobile first using pure CSS

    2
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    It turned out really well. Great submission! 👏👏

    Marked as helpful
  • Vanza Setia•27,715
    @vanzasetia
    Submitted almost 4 years ago

    Responsive 3 Column Card Component (No Media Queries)

    #accessibility#bem#lighthouse
    8
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    It's surprising to know that you coded this on a phone so well!✨✨ It is brilliantly done! 👏👏

    Marked as helpful
  • Asif M•200
    @asifm37
    Submitted almost 4 years ago

    Responsive Statistics Preview Card using HTML & CSS Only

    2
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey Asif! The reason is that the image is an inline element and properties like font size and line heights can affect it causing it to have little space (padding) beneath it. Set the display: block; to the image element and the issue will be fixed.

    Marked as helpful
  • CJ Castillo•15
    @timssy
    Submitted almost 4 years ago

    3-column preview card component HTML/CSS

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey CJ Castillo! Awesome submission! 👏 There's minor issues that you need to look at though:

    • border radius is being applied on wrong edges on smaller screen size.
    • The size of the cards increases from the bottom the moment the layout hits size smaller than 1440px.
    Marked as helpful
  • Geoff Walker•165
    @Geoff-Walker
    Submitted almost 4 years ago

    Simple Html and Css code making a responsive card

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey Geoff! You did an excellent work on this challenge. I noticed one issue that on smaller mobile screen size some part of text-block is clipped or it becomes hidden. Hope you take a look on that. Keep it up!

    Marked as helpful
  • Jimender•140
    @Jimender
    Submitted almost 4 years ago

    Stats Preview

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey Jimender! Your submission is great and almost pixel perfect! Just a few things I would like to point out:

    • The attribution part is floating over the card on the mobile screen size.
    • The card is trimmed from top on smaller screen size.
    • Use semantic html wherever possible. It will help you avoid many issues like the accessibility and html issues.
  • James Greilick•50
    @jgreilick
    Submitted almost 4 years ago

    Responsive Card with CSS Grid and Flexbox

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey James! Your submission is excellent! It is almost similar to the design. I just want to say this that you don't have to generate more colors as all the design specs are already mentioned in the style guide. Matching the color of the image seems tricky and for that you can take a look at mix-blend-mode and background-blend-mode. Both can be useful in matching the color of the image. Keep it up!

    Marked as helpful
  • Rafal•1,395
    @grizhlieCodes
    Submitted almost 4 years ago

    Stats Preview Card - Grid & Flexbox

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    I don't know what you're talking about but this seems pixel perfect to me. That is an outstanding piece of work! One thing you might wanna look into is that the site cuts off from top and bottom on some mobile screen sizes.

    Marked as helpful
  • leo_lilo•60
    @leolilo
    Submitted almost 4 years ago

    CSS, HTML

    2
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey @leolilo Your work is pretty awesome! There's one issue that you might wanna address. On mobile screen size the border radius is applied on the wrong edges.

  • Chandima Rathnayake•40
    @Chandima-R
    Submitted almost 4 years ago

    Only HTML and CSS used for this

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey Chandima! Congrats on your first awesome submission. It is nicely done. You could increase size of texts and buttons as they look smaller than in the design. Also I noticed that you have accessibility issues to address. You can do the following to fix them:

    • Landmark issue - Wrap the whole body using semantic html element such as main, section, article etc. and try to use semantic html instead of div wherever possible.

    Example

    <body>
      <main class="container">
        . . . 
      </main>
    
      <section class="attribution">
        . . .
      </section>
    </body>
    
    Marked as helpful
  • Floripin•60
    @Floripin
    Submitted almost 4 years ago

    My second challenge: 3 column preview card component

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    It is the border property that you have applied on button pseudo class that shows up making it look like it expands from right and down. Just remove the border properties from pseudo class and add it to the button instead. It works.

    Marked as helpful
  • Emilio Frigo•60
    @3miliof
    Submitted almost 4 years ago

    Responsive Preview Card Component

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Nice work! Few things can be improved:

    • The image stretches up when you go on mobile screen or large screen size. Make it so the image doesn't stretches up no matter what screen size.
    • Add some line-heights to the paragraph.
    • Give some space to statsBox at the bottom.
    • Use semantic html where possible.
    Marked as helpful
  • James•45
    @magneticsands
    Submitted almost 4 years ago

    HTML/CSS

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey buddy! Just set the mix-blend-mode to multiply and set the opacity to .8 on img element. It will match the color as in the design just fine.

  • Floripin•60
    @Floripin
    Submitted almost 4 years ago

    Stats preview card component with html, css, flexboxes,...

    2
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey Floripin! I too met with these scenarios and I was able to fix it so I'll try my best to help you out here:

    1. If you add max-width:40% to the text class, it will allow both the image_container and text class to fill in the 50/50 space. But sorry I am not sure why that happens. This could be because of the paddings and margins or it could be that the text area is taking as much space it wants and so does the image_container. Here the image does has a limit ( it has fixed pixels whether or not you specify it) but the text part doesn't so it takes the leftover space after the image_container is done taking the space it needs.

    2. The image is an inline element so properties like line-height and font-size would affect it. Setting display:block or display:inline-block would solve the issue. StackOverflow | IMG has 5px extra padding at bottom of div

    I hope that helps.

    Marked as helpful
  • James•45
    @magneticsands
    Submitted almost 4 years ago

    HTML/CSS

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Awesome work!

  • Chamu•13,800
    @ChamuMutezva
    Submitted about 4 years ago

    3column-preview-card-component - html and scss

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Hey! Some of the border radius is applied on wrong edges and the font on the button should also be Lexend Deca. Overall your solution is stellar and your skills are outstanding! Nicely done.

  • Siddharth Garewal•20
    @siddharthgarewal
    Submitted almost 4 years ago

    Responsive webpage using flexbox and media query

    1
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    The color on titles and on the button texts need to be fixed other than that you did a good job. Keep it up!

    Marked as helpful
  • Heli0s•670
    @zeerobit
    Submitted almost 4 years ago

    Responsive design using HTML5 & CSS3 (Flexbox)

    3
    Smita•375
    @Smita-14
    Posted almost 4 years ago

    Your website shows mobile screen size even on the desktop screen size.

Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub