py-code314
@py-code314All solutions
Responsive Time Tracking Dashboard using CSS Grid
#accessibility#bem#sass/scss#van-js#gulpSubmitted 28 days ago- Right now I have a very limited knowledge about how to use aria attributes. So if anybody can go through my HTML markup and point out errors or can suggest some good resources regarding use cases I would be grateful to them
- I'm using Voice Over as a screen reader and after the user reaches last stats card, focus is changing to the end of list and then main but I want the focus to go to buttons container (similar to focus cycle with Tab key).I've tried to change focus by adding different aria attributes but it didn't work. I appreciate any help with that
- I've refactored JS code a lot and I hope it's better organized. Any suggestions for improvement are welcome
Responsive Sign-up Form using Flex
#accessibility#bem#gulp#sass/scssSubmitted about 1 month ago-
I really appreciate some feedback on my using 'aria-attributes'. I tried my best but I'm not sure I'm going in the right way
-
I used
<dialog>
element to show the Success message and then applied some styles to it to make it exactly like in the design. Keeping in mind the Accessibility features, is this the best approach or should I just use a regular<div>
? (Accessibility Report telling me that<dialog>
is not supported in all browsers 🤷🏼♂️) -
Any suggestions to improve JS code is welcome especially functions
checkValidity()
andshowError()
. Anyway I can improve those? -
After I submitted my solution, Accessibility Report notifying me that
role="list"
androle="listitem"
are not necessary for <ul> and <li> respectively. Please advise!
Thanks in advance
-
Responsive and Interactive Article Preview Component using JavaScript
#bem#gulp#sass/scssSubmitted about 2 months ago- Is using of tag
<article>
for card semantically correct? - I could not get the images in mobile and desktop views as exactly as they are in design files (They are a little bit zoomed out I guess). Appreciate any suggestions on how to make it happen. I’m using this code for the image:
width: 100%; height: 100%; object-fit: cover;
- I tried my best to add aria attributes to social media div & share button. Feel free to point out any errors and suggestions!
- Is using of tag
Responsive Testimonial Cards using CSS Grid
#bem#sass/scssSubmitted 6 months ago- Any advice on how to use BEM more efficiently
- Please let me know if I made any mistakes in using semantic HTML tags
- Any Sass advice on how I can use it to make the code DRY (for eg - use of mixins)
Responsive Web Page using CSS Grid
#node#sass/scss#bemSubmitted 6 months ago- I defined widths for images in HTML and applied
height: auto
in CSS as part of Global Reset. Is there a better approach to this? Should I define both width & height in HTML itself? - I've added
aria-hidden
attribute to images. Am I right to use it in this context? - I'm still new to Sass, so any advice is welcome
- I defined widths for images in HTML and applied
Responsive Product Preview Card using CSS Flexbox and Grid
#bem#sass/scssSubmitted 7 months ago- First time made a project using Sass. So any feedback is welcome
- Used
width: 100%; height: 100%
on to fully cover the container with image. Please let me know if there's a better way to do it - I created mixins for strikethrough text so that screen readers can read it. Please go through the code and let me know if I've made any mistakes there
Responsive Recipe Page using CSS
#bemSubmitted 7 months agoThis project is mostly about semantic HTML. Please go through my html code and let me know if I made any improper use of html tags
Responsive Profile Card using CSS Flexbox
#bemSubmitted 7 months ago- I changed background & text colors as I didn't like the colors in design file. I hope the color contrast is acceptable
- I'm still not sure that I'm naming the classes and custom properties right way. I appreciate if anybody could help me with that
- I used
clamp()
for changing padding. Is this function can also be used for spacing in addition to change font-size?
Responsive Blog Preview Card using CSS Flexbox
#bemSubmitted 7 months ago- If you are familiar with BEM naming convention please go through my HTML class names and let me know if I made any mistakes there!
- In my CSS, did I omit to include any required properties in @font-face?
- I'm very confused about how to name custom properties in
:root
. How should I name them(by color names/font size or position or functional)? Please point me in the right direction if you can
Responsive QR Code card using Flexbox
Submitted 8 months ago- I wrapped card image, title and text in individual
div
s. Is it advisable to do it this way or is there a better way to do it? - Tried to use BEM nomenclature for class names. Please let me know if I made any mistakes!
- Little confused about the use cases of margins and padding. Is there any good resource out there which explains their proper use?
- Any alternatives to media queries so that I don't have to write them for every screen size?
- I wrapped card image, title and text in individual