How do i position the search box to the right? By default it is to the left now
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Here is an example with the search box aligned to the right.
It looks like they use this CSS style:
.dataTables_filter {
width: 50%;
float: right;
text-align: right;
}
As far as I can tell, this is the default, which means you are probably doing something that is overriding this. Could you post an example where the field is improperly aligned so we can take a look at it?