Jquery Tag It plugin - new line for each tag when they should float next to each other
Im using the "tag it" plugin. Everything working fine, except for each time a tag is added to the holder, a new is taken. Has anyone experienced this?
Thanks
http://plugins.jquery.com/project/tag-it
http://levy开发者_运维知识库carneiro.com/2010/03/tag-it-tag-suggestions-editor-and-autocomplete-in-a-jquery-ui-plugin/
This is likely to be a CSS problem, make sure that you have the following:
ul.tagit li {
display: block;
float: left;
...
}
精彩评论