Dark Mode Section

Apply dark theme to a specific section using data-bs-theme.

Preview

Code

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>

<div class="container py-5">

<div class="p-4 border">
Light section
</div>

<div class="p-4 mt-3 border" data-bs-theme="dark">
Dark themed section
<button class="btn btn-secondary mt-2">Button</button>
</div>

</div>

</body>
</html>

More BS5 Dark Mode Examples (7)