Tagify: one line mix mode

Created on 18 May 2020  路  1Comment  路  Source: yairEO/tagify

Hi and thanks for this highly customizable library.
is it possible to make text input in mix mode be one line like a normal html input?
im using Tagify in a project where we want to use it in multiple places like title and description input.

Help wanted

Most helpful comment

.tagify__input {
  white-space: nowrap;
  overflow: auto;
}

.tagify__input br{
  display: none;
}

.tagify__input div,
.tagify__input p{
  display: inline-block;
  white-space: nowrap;
  overflow: auto
  overflow-y: hidden;
}

>All comments

.tagify__input {
  white-space: nowrap;
  overflow: auto;
}

.tagify__input br{
  display: none;
}

.tagify__input div,
.tagify__input p{
  display: inline-block;
  white-space: nowrap;
  overflow: auto
  overflow-y: hidden;
}
Was this page helpful?
0 / 5 - 0 ratings

Related issues

erniomaldo picture erniomaldo  路  5Comments

Oigen43 picture Oigen43  路  5Comments

Mushr0000m picture Mushr0000m  路  6Comments

danqing picture danqing  路  6Comments

8483 picture 8483  路  4Comments