Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

html - CSS - How would I align these 'li's to the right?

https://i.stack.imgur.com/I3FWb.png

I've a problem with the message bubbles in my app, They won't align to the right, I've tried messing with displays, margins, floats, you name it. I've decided to leave it up to the professionals.

Right now my hierarchy looks something like this:

.Message {
  width: fit-content;
  height: auto;
  margin-left: 10px;
}

.Message>h5 {
  font-size: 12pt;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  opacity: 0.3;
  margin-bottom: 0px;
}

.Message>ul {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.Message>ul>li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 12pt;
  width: fit-content;
  margin-top: 5px;
  background-color: rgb(45, 45, 45);
  padding: 6px;
  border-radius: 8px;
}

.Message>br {
  margin: 0px;
}

#MSGOUT {
  text-align: left;
  float: left;
}

#MSGIN {
  float: right;
  margin-right: 5px;
  text-align: right;
}
<div class="Message" id="MSGIN">
  <h5>UserName</h5>
  <ul>
    <li>Message1</li>
    <li>Message2</li>
  </ul>
</div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

easiest way to do this is with flexbox

.Message{
display:flex;
flex-direction:column;
align-items:flex-end;
}

ul{
list-style-type:none;}

h5{
margin:0}
<div class="Message" id="MSGIN">
  <h5>UserName</h5>
  <ul>
    <li>Message1</li>
    <li>Message2</li>
  </ul>
</div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...