如何显示内联?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何显示内联?相关的知识,希望对你有一定的参考价值。

嗨,我有一个简单的标签“区”和下拉列表的邮政编码。我只想让标签和下拉列表并排放置在一条线上,但由于某种原因它会起作用。它会一直垂直显示,如顶部标签和底部菜单。

这是我的html

<div class="filterButton leaflet-control">
     <span><i class="fa fa-filter fa-7x"></i>
      <label class="menu">District: </label>
      <select class="ml-1 menuContent" name="zipcode" [(ngModel)]="zipcode" (ngModelChange)="selectedZipcode()">
        <option>-All-</option>
        <option *ngFor="let zipcode of artworkList | duplicates ">{{zipcode}}</option>
      </select>
    </span>
  </div>

和我的css:

.filterButton {
  margin-left: 43px;
  border-radius: 0;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-position: 50% 50%;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  padding: 3px;
 }

 .fa-filter:hover  {
   color: #5690C6;
 }

 .fa-filter {
  color: #1770a6;
  font-size: 21px;
  padding-left: 4px;
  padding-right: 4px;
  align-content: center;
 }

 .menu, .menuContent {
   display: inline;
  }
答案

你应该做显示:内联;或显示:filterButton上的内联块,元素的包装器。

以上是关于如何显示内联?的主要内容,如果未能解决你的问题,请参考以下文章

<code> vs <pre> vs <samp> 用于内联和块代码片段

在 matplotlib 内联和 QT 后端之间切换 Python 脚本

CSS:如何使水平列表居中?显示:内联不工作

如何以闪亮的方式内联显示小部件

如何在 Resharper IntelliSense 中显示所有 Visual Studio 代码片段?

如何在 Django Summernote 中显示编程片段的代码块?