這就像在標題出現在左邊,並且下拉設置菜單的右側箭頭.. 後這是我到現在爲止在'div'元素中,如何將文本對齊到左側,而將所有其他項目對齊到右側?
<style>
.thread {
background-color: skyblue;
height: 50px;
width: 90%;
align-self: center;
text-align: end;
display: inline-block;
border-radius: 6px;
position: relative;
}
.header {
width: fit-content;
display: inline-block;
align-self: right;
}
.arrow {
display: inline-block;
vertical-align: bottom;
height: 50%;
}
.titletext {
display: inline-block;
text-align: left;
}
</style>
<div class="thread">
<p class="titletext">Title</p>
<div class="header"><img class="arrow" onclick="showPopover(this)" src="https://image.flaticon.com/icons/png/512/7/7584.png" /></div>
</div>
And I'm trying to achieve this
對不起如果代碼過於隨機或者某些行不需要,但我一直在搜索並嘗試很多東西,所以這就是我現在所擁有的東西。