皆さん、こんにちは。
このコードを試してみましたが、(スクリーン A) でご覧のとおり、ボックスの下のテキストが重なってしまっています。SCSS で以下のオプションを試しました。
white-space: revert;
そして削除
white-space: nowrap;
white-space: revert; を使用すると、テキストが列になります (スクリーン B)。
最初のコードはこちらです。
皆さん、こんにちは!
「Enhanced category」のコードを再現しようとしましたが、テキストが重なるバグが発生しました(画像 A)。SCSS では、以下のように設定しました。
white-space: revert;
そして削除しました。
white-space: nowrap;
後者はテキストが重なる原因となっていたためです。revert を適用すると、違いが見られます(画像 B)。
このコードで同様の問題が発生したことはありますか?
よろしくお願いします。
元のコードはこちらです。
Enhanced category-box display component
A
B
テスト:
.categories-and-latest {
flex-direction: column;
}
.category-list {
thead,
.topics,
.category-description {
display: none;
}
// .title, .featured-topic {
// overflow: hidden;
// text-overflow: ellipsis;
// flex: 0 1 auto;
// white-space: revert;
// }
@mixin ellipsis {
overflow: hidden;
text-overflow: ellipsis;
flex: 0 1 auto;
white-space: revert;
}
tbody {
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
tr {
display: inline-block;
width: 250px;
min-height: 250px;
margin: 0.75em;
border: 1px solid rgba(0, 0, 0, 0.1) !important;
border-left-color: transparent;
margin-block: 70px;
}
.category {
padding: 1.25em 0;
border-width: 0;
display: block;
width: 100%;
height: calc(100% - 2.5em);
position: relative;
background: #f2f2f2;
display: flex;
flex-direction: colum;
flex-wrap: wrap;
align-items: center;
.category-logo {
float: unset;
margin: 0 auto;
}
h3 {
a[href] {
display: flex;
flex-direction: column;
width: 250px;
order: 1;
.category-text-title {
justify-content: center;
}
}
}
&:after {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: "";
z-index: 1;
box-sizing: border-box;
pointer-events: none;
border-left: 6px solid;
opacity: 0.35;
border-color: inherit;
}
.subcategories {
.category-name {
margin-top: 0;
}
.badge-notification {
display: none;
}
}
}
}
}

