<html>
<head>
<title>Selektory klas i identyfikatorów</title>
</head>
<style>
.with-border {
border: 2px solid black;
margin: 10px 0;
}
/* Style z tego bloku CSS zostana zaaplikowane na element,
który posiada jednocześnie klasy "with-border" oraz "first" */
.with-border.first {
padding: 10px 20px;
background: pink;
}
</style>
<body>
<article class="with-border first">
<p>Paragraf wewnątrz pierwszego <strong>article</strong></p>
</article>
<article class="with-border second">
<p>Paragraf wewnątrz drugiego <strong>article</strong></p>
</article>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.