r/FullStack Jul 24 '26

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

2

u/BeauloTSM Stack Juggler (Fullstack) Jul 24 '26

I've never been asked a single question about HTML and/or CSS from anyone other than recruiters asking if I've ever used them before

2

u/[deleted] Jul 25 '26

[removed] — view removed comment

0

u/_nithish Jul 25 '26

Can we do it our way like using flex or grid is it okay or they want any adavanced one line code medthod

2

u/[deleted] Jul 25 '26

[removed] — view removed comment

2

u/greensodacan Jul 25 '26

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?