Mubaraq Wahab
@mubaraqwahabAll comments
- @fwirschSubmitted over 3 years ago
- @SebaFariasSubmitted about 4 years ago
- @JDFIREXSubmitted about 4 years ago@mubaraqwahabPosted about 4 years ago
Great! Here's a tip to fix the accessibility issue in your report: Give the input a label and make the label visually hidden.
0 - @MuhammadHassaanMahmood5550Submitted about 4 years ago
Except for the home area section this challenge is easy👍
@mubaraqwahabPosted about 4 years agoIt looks like you're missing the background-image behind the phones. The footer should also have a dark blue background colour. Everything else looks good 👍🏾
0 - @mgtachenSubmitted about 4 years ago
I have a lot of problems with CSS.I have been taking a lot of online courses for a while now. In this project it was not responsive on desktop but it was on mobile ,I dont know what is the exact problem.
@mubaraqwahabPosted about 4 years agoWell done! I have some comments to share:
-
You have a
<div class="bottom">
that contains a<div class="left">
Below.bottom
, you have a<div class="right">
. The closing tag for.bottom
comes before.right
. Moving the closing tag below.right
(i.e. moving.right
into.bottom
) should fix the responsiveness issue, I guess. -
I suggest you rename your
index1.html
to justindex.html
. The design preview here isn't showing the right thing. (It probably expects anindex.html
file) -
A tip: You have a
<div class="button">
. You could use a<button class="button">
(or a link). I read an article regarding this: When To Use The Button Element
All the best :)
1 -
- @fodareSubmitted about 4 years ago
I had some troubles getting the css "border-radius" to work for the main page. Any tips and solution welcome.
@mubaraqwahabPosted about 4 years agoHey.
I'm guessing you added
border-radius
to#Single-Price
and it didn't work. It looks like some<div>
s inside#Single-Price
have theirbackground-color
s set and noborder-radius
, so their sharp edges flow out of#Single-Price
. A quick fix would be to addoverflow: hidden
to#Single-Price
.Second thing. I noticed you used a
<table>
to layout the "$29 per month". I've read it's not good (for accessibility, for example). Use a<table>
for "tabular" data. In your case, you can use<div>
s instead, or<span>
s, or something, and style with CSS.All the best!
0 - @maxicrisSubmitted over 4 years ago
I would appreciate any feedback. Thanks for watch.
@mubaraqwahabPosted over 4 years agoWell done 👏🏾! Looks almost exactly like the design. The only significant issue I see is that the "Gain access to ..." text should be gray.
I'm very impressed however. The component's width perfectly matches the design!
2 - @AFLazaroSubmitted over 4 years ago
Any feedback on how to improve my code is welcome!
@mubaraqwahabPosted over 4 years agoHey this is good, well done!
I have two comments:
-
The avatar seems stretched on desktop. I think giving the
.user-avatar__container
a width equal to its height should fix it (width: 4rem;
perhaps). -
Second thing, I think it would be good to have the share button as a
<button>
not a link. As a link, clicking it scrolls the page back to the top.
1 -