相关关键词
关于我们
最新文章
- ThinkPHP 5.1、6.0、6.1 与 8.0 版本对比分析
- 涉嫌侵权的人只复制了版权软件,没有传播给其他人,是否符合复制侵权的判定?
- 网站域名备案到企业名下后,即表明是商业使用了吗?
- 软件中使用了GPL & MIT 协议的文件 和 使用了 GPL | MIT 的有什么区别?
- 网站版权纠纷中的来源非法是否有严格的司法定义?
- [确定有效] ECSHOP后台登录不了的问题解决 https打不开
- 免费搜索代码:如何利用百度做一个企业网站内搜索?
- MySQL 中 HAVING 与 REPLACE 的用法解析
- 深入理解 MySQL 的连接操作:-h、-P、-u、-p 详解
- 在 MySQL Workbench 中自定义导出文件格式的解决方案
html中div不自动换行、强制不换行的具体实现
发布日期:2014-02-13 00:00:00
2355
本文为大家介绍下html 中div不自动换行的多种实现,如可以使用nobr标签实现不换行,用nowrap元素等等,感兴趣的朋友可以参考下
1.用<nobr>标签实现不换行
<div>Hello world!<nobr> Hello world!<nobr></div>
2.用<用nowrap元素>标签
<div nowrap>Hello world! Hello world! Hello world! Hello world!</div>
3强制不换行
div{
white-space:nowrap;
}
4.如果是两个div,可使用float实现不换行
<div class="class1">hello </div>
<div class="class2">world! </div>
.class1 {float:left;}
5.在div中也可使用display实现不换行
<div class="class1">hello </div>
<div class="class2">world! </div>
.class1 {display:inline;}
.class2{display:inline;}
<div>Hello world!<nobr> Hello world!<nobr></div>
2.用<用nowrap元素>标签
<div nowrap>Hello world! Hello world! Hello world! Hello world!</div>
3强制不换行
div{
white-space:nowrap;
}
4.如果是两个div,可使用float实现不换行
<div class="class1">hello </div>
<div class="class2">world! </div>
.class1 {float:left;}
5.在div中也可使用display实现不换行
<div class="class1">hello </div>
<div class="class2">world! </div>
.class1 {display:inline;}
.class2{display:inline;}