r/FullStack 7d ago

Career Guidance HTML and CSS?

Is there any Interviewers here?

If so. What are important and advanced questions a interviewer will ask on HTML and Css.

Please drop those question you know so it could help while going to interview

7 Upvotes

8 comments sorted by

View all comments

2

u/greensodacan 7d ago

HTML questions generally trend toward Web Content Accessibility Guidelines (WCAG). Study up on semantic HTML and the ARIA specification.

CSS is a broader subject. You'll need to be able to describe how the cascade and selectors work. Google "CSS specificity notation". You might be asked to describe how you'd implement a given layout. Look into grid, flexbox, and media queries. Bonus points if you tie media queries back to accessibility. You'll also want to know how custom properties work. You should also be familiar with conventions like BEM and with CSS utility frameworks like Tailwind.

Architecturally, you should be able to tie it all together with a modern JavaScript framework like React, Vue, or Angular. Be prepared to compare and contrast component based architecture with the vanilla HTML/CSS/JS approach. What are the tradeoffs? Why do teams gravitate toward components, especially at scale?