我試圖讓這個文本在一個按鈕容器中水平顯示(類似于我們在書籍或網頁上看到的方式),但即使在我添加了horizontal-tb后,它仍然垂直顯示,這使得它很難閱讀。以下是我的代碼:
.backButton {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
writing-mode: horizontal-tb !important;
position: fixed;
bottom: 20px;
right: 20px;
width: 60px !important;
height: 60px !important;
border-radius: 50%;
background-color: pink;
color: white;
font-size: 16px;
z-index: 9999;
}
有沒有我可以嘗試的其他事情,或者我需要檢查代碼的其他部分來解決這個問題?