index.html
					<!doctype html>
<html>
	<head>
		<title>Display block</title>
		<link href="/assets/reset.css" rel="stylesheet">
		<link href="setup.css" rel="stylesheet">
		<link href="style.css" rel="stylesheet">
	</head>
	<body>
		<section>
			<p><a href="#">Links are usually inline.</a> This is some text in the first element.</p>
		</section>
		<section>
			<p><a href="#">But you’ll often want them block →</a> And some more in the second element.</p>
		</section>
		<section>
			<p>Then a third one, too.</p>
		</section>
	</body>
</html>

		
	
setup.css
					/* Same as before. */
:root { --spacing: 1rem; }

body {
	font-family: sans-serif;
	padding: var(--spacing);
}

section {
	background-color: var(--background, deepskyblue);
	border-block-start: solid black calc(var(--spacing) / 5);
	padding: var(--spacing);

	&:not(:first-child) { margin-block-start: var(--spacing); }
}

		
	
style.css
					a {
	background-color: gold;
	text-decoration: underline;
}

section:nth-child(2) a {
	display: block;
	margin-block-end: var(--spacing);
	padding: var(--spacing);
	text-decoration: none;
}