Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Add vertical container-size guide lines with mini corner squares for precise, structured web layouts. Use when asked for container lines, measured layout guides, vertical boundary lines, editorial grid markers, or small corner-square frame details.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | -24% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 11% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -23% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -5% | 0% |
1px with low opacity.css:root { --container-max: 1120px; --container-pad: clamp(20px, 4vw, 48px); --line-color: rgba(24, 24, 27, 0.14); --line-strong: rgba(24, 24, 27, 0.28); --corner-size: 6px; }
Use pseudo-elements on the layout shell.
css.container-lines { position: relative; isolation: isolate; } .container-lines::before, .container-lines::after { content: ""; position: absolute; top: 0; bottom: 0; z-index: -1; width: 1px; background: var(--line-color); pointer-events: none; } .container-lines::before { left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2)); } .container-lines::after { right: max(var(--container-pad), calc((100vw - var(--container-max)) / 2)); }
Add four small squares to sections that need a precise measured feel.
css.corner-squares { position: relative; } .corner-squares > .corner { position: absolute; width: var(--corner-size); height: var(--corner-size); background: var(--line-strong); pointer-events: none; } .corner.top-left { top: 0; left: 0; transform: translate(-50%, -50%); } .corner.top-right { top: 0; right: 0; transform: translate(50%, -50%); } .corner.bottom-left { bottom: 0; left: 0; transform: translate(-50%, 50%); } .corner.bottom-right { right: 0; bottom: 0; transform: translate(50%, 50%); }
html<main class="container-lines"> <section class="corner-squares"> <span class="corner top-left"></span> <span class="corner top-right"></span> <span class="corner bottom-left"></span> <span class="corner bottom-right"></span> ... </section> </main>
Use the same container width as the line positions.
css.content-container { width: min(100% - (var(--container-pad) * 2), var(--container-max)); margin-inline: auto; }
4px to 8px.Other measured skills in the registry, with their headline benchmark lift.