Decided to do this without Javascript to complete the optional challenge in the description. Also added the animation of the box bobbing up and down just for fun.
Conrad
@ConradMcGrifterAll comments
- @spencerrundeSubmitted about 3 years ago@ConradMcGrifterPosted about 3 years ago
nice job completing the optional challenge 👍
I only see one issue:
- if all the accordion tabs are opened, the content overflows the card (this is because you have a fixed height set on your card)
Marked as helpful1 - @brookewargnierSubmitted about 3 years ago
This was a quick 4 hour evening build. It really helped me start to feel like I'm getting a good handle on CSS and HTML, and it felt especially nice after my last project which had multiple section on a page!
Please let me know if you find any issues of standards or any additional resources that you think will help me grow in any capacity :)
Thanks!!
- Brooke
@ConradMcGrifterPosted about 3 years agogood job, it looks really nice 👍. I am also doing some smaller projects after completing some of the longer/bigger ones and I think its a good way to try new things!
-
my main suggestion is that you should avoid setting fixed
height
andwidth
, especially fixed heights because this can cause problems with responsiveness and content overflowing its container. -
if you really need to set a width or a height, use
min-height:
,max-height:
, ormin-width:
,max-width:
-
try and use margin and padding on your elements inside the cards to create the space you need instead of setting a fixed height
Marked as helpful1 - @Ahmed0107Submitted about 3 years ago
Can you rate this work, please?
@ConradMcGrifterPosted about 3 years agoits pretty decent. I would rate it 7.5/10
- I think you need to fix the layout on mobile
- on desktop at larger resolutions your design is stretching so try putting a max width on your
div
container - I think you need to validate the password better because currently you can enter just 1 character and it will accept it. maybe put a length requirement
Marked as helpful1 - @mohameddrazSubmitted about 3 years ago
what is my grade?
@ConradMcGrifterPosted about 3 years ago- you are using way too many grid columns / rows. 135 is a pretty ridiculous number.
- your grid is not responsive and the text is overflowing the containers. Try to use a responsive unit like
fr
to set the grid colums / rows.
Marked as helpful0 - @abdnadeem382Submitted about 3 years ago
Any feedback on grid systems or underlining links will be highly appreciated.
@ConradMcGrifterPosted about 3 years agohere is a codepen I made to show you how I did the underline hover effect for my project
Marked as helpful0 - @shironeko2707Submitted about 3 years ago
Hi. This is my lastest project on FrontEnd Mentor. Any feedback is appreciated
@ConradMcGrifterPosted about 3 years agoyour image isnt showing up because you need to add the
src="./images/image-header-desktop.jpg"
on the image element.-
example:
<img class="img-src img-mono" src="./images/image-header-desktop.jpg" alt="">
-
currently you are trying to use the property
content: url("./images/image-header-desktop.jpg")
to link the image but that is not correct
0 -
- @mizek1Submitted about 3 years ago
Hey! It's the first time I use BEM methodology. What did I miss? Any tips and feedback would be absolutely appreciated.
- @distephano30Submitted about 3 years ago
Greetings,
Let me know what you think
@ConradMcGrifterPosted about 3 years agowell done, the site looks good to me. The only thing I would suggest is that you put a
max-width
on your main container so that it doesn't stretch out at bigger screen sizesMarked as helpful0 - @CesarGMEFASubmitted about 3 years ago
I hope advice, criticism and whatever.
I had serious problems with the height of the cards and well I think everything is fine.
@ConradMcGrifterPosted about 3 years agogood job , Cesar
- I would put a
max-width
on your main container so that it does not stretch at larger screen sizes
Marked as helpful1 - I would put a
- @Diego-Garza2007Submitted about 3 years ago
Creo que el codigo que escribi es un poco desordenado aun estoy aprendiendo si ven en algo que pueda mejorar comenten
@ConradMcGrifterPosted about 3 years agoyou should avoid putting a fixed height on your containers because this could cause problems with content overflowing
debe evitar poniendo un altura fija en su cajas, porque no es responsivo. debe usar
min-height
in vez deheight
en la mayoría de los casos.Marked as helpful1 - @BrandenEvansWDSubmitted about 3 years ago
I would appreciate any feedback! I'm very new to scss still. One of the issues I was having was using "@use" to import my partials into my main scss style sheet. I eventually was able to more it work using @import and I can't seem to figure it out. Also issues with vs code plugins crashing whenever I would open the style.scss file.
@ConradMcGrifterPosted about 3 years agocheck out this video by Kevin Powell on how to use @forward and @use link to video
Marked as helpful0 - @JimmyHoang296Submitted about 3 years ago
I can not figure out how add image to get same effect, so I use img as background
@ConradMcGrifterPosted about 3 years agoyou can take a look at my solution. it's not perfect but I was able to achieve the image positioning with
position:absolute
Marked as helpful0