エレメント(Elements)
Last updated
Last updated
.search-form {
> .field { /* ... */ }
> .action { /* ... */ }
}.article-card {
.title { /* だめではない */ }
> .author { /* ✓ より良い */ }
}.profile-box {
> .firstname { /* ... */ }
> .lastname { /* ... */ }
> .avatar { /* ... */ }
}.article-card {
> h3 { /* ✗ 避ける */ }
> .name { /* ✓ 良い */ }
}