简体   繁体   中英

Css for emoji img tags in display flex

I have editable content div with emojiareaone integrated
To center the content i used

{
   display: flex;
   flex-direction: column;
   align-items: center;
   align-content: center;
   text-align: center;
}

it displays test in right positions but

all emojis tags in separate rows

表情符号图片

is there any way to display as it was entered

You Can try This .

  emoji-tag {
    display:inline-block;
    float:left;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM