LOGBOOK

HELP

WEBT Logs


Q What is the CSS display property?

The display property controls how an element participates in layout — whether it behaves as a block, flows inline, lays out its children with flexbox or grid, or vanishes entirely. It is the property that lets you override an element's default block/inline nature and opt into lay...

Quiz: WEBT / CSS Basics | updated: Jul 14, 2026





Q How do you create hyperlinks in HTML?

Hyperlinks use the anchor element <a>, whose href attribute holds the destination and whose content is the clickable text the user sees. The anchor (<a>) is what makes HTML "hyper" — it turns text into a link to another resource: <a href="destination">Link Text</a> The two parts...

Quiz: WEBT / HTML Documents | updated: Jul 14, 2026




Q What does the flex-basis property control?

flex-basis sets an item's starting size along the main axis — the baseline that flex-grow and flex-shrink then adjust up or down. Think of it as the "ideal" or initial size each item asks for, before the container decides whether there's spare space to grow into or a shortfall to...

Quiz: WEBT / CSS Layouts | updated: Jul 14, 2026