Latest solutions
Latest comments
- @middlemine@Akhlak-Hossain-Jim
Hey, You have done a great job completing the challenge. Here is some of my suggestions to make it more better.
- remove the margin from all side in the mobile view (
margin: 0;
) - In the mobile view try adding
width: 100%;
- You can start your from
576px
(standard mobile view of bootstrap)
- remove the margin from all side in the mobile view (
- @Mudi-Igbinoba@Akhlak-Hossain-Jim
Hi there, great work so far,
But here are some things you can do to improve your code.
- add
line-height: 100%;
at your.rare-btn
that way it will be a proper circle. - add can add an
if else
statement to check if someone has selected a rating or not, if so you change the card or do nothing that would be great
Keep up the good work. Happy coding:)
Marked as helpful - add
- @im-voracity@Akhlak-Hossain-Jim
Great work so far.
Here are some of my suggestions,
- consider using column gap as well for responsiveness
- instead of hard-coded values like
px
, try using relative values likeem
,rem
,%
etc making the site responsive
And remember practice will make it better so practice more. Happy coding :)
- @brainwins@Akhlak-Hossain-Jim
Great work so far. Everything looks good on the website.
Here is some of my suggestion,
- I found
%
is best for this kind of scenario where calculation involved - and for the resolution, you should consider using relative values like
em
,rem
, and more or you can use CSS functions likemin()
,max()
,minmax()
check this and this resources for reference. - check for typos in code like
sectiom
Keep coding everything just need a bit practice. Happy coding :).
- I found
- @anthonygedeon@Akhlak-Hossain-Jim
Great work so far, but
- consider using
main
tag for the card container that would be a great practice - add some space in the mobile view
- try using
h1
at first and thenh2
,h3
and all
Other than that everything looks good. Happy coding:).
- consider using
- @ttaammaarr@Akhlak-Hossain-Jim
Nice work. For that you can do:
- set a fixed bottom padding,
- take a div with
display: flex;
forp
and thebutton
and - make
flex-direction: column; justify-content: space-between;
or
- in
section
adddisplay: flex; flex-direction: column;
, - select
img
and addwidth:64px;height:auto;
- in
button
addmargin-top:auto;
and it should always stay in the same position.
Happy coding :)
Marked as helpful