-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
completed the task UiStretch #11
Conversation
Добавляю преподавателя (@ShGKme) для код-ревью. |
04-sfc/30-UiStretch/UiStretch.vue
Outdated
:deep(.stretch-container > img), | ||
:deep(.stretch-container > video), | ||
:deep(.stretch-container > picture) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Такое решение работает. Но, если в содержимое компонента даже где-то глубоко-глубоко случайно тоже будет элемент попадающий под .stretch-container > img
- на него эти стили тоже подействуют.
Нужно немного поправить селектор так, чтобы он действовал только и только на img/video
являющиеся непосредственно дочерними для дива этого компонента.
Добавляю преподавателя (@ShGKme) для код-ревью. |
Если :deep применить только к самим img/video, а не полностью всё оборачивать |
.stretch-container > :deep(img), | ||
.stretch-container > :deep(video), | ||
.stretch-container > :deep(picture) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Хотя deep
с >
работает точно также, лучше здесь использовать :slotted
. Семантически - стилизуется именно содержимое слота.
Правильное ли такое решение?