- HTML 教程
- HTML 教程
- HTML - 简介
- HTML - 编辑器
- HTML - 基本标签
- HTML - 元素
- HTML - 属性
- HTML - 标题
- HTML - 段落
- HTML - 字体
- HTML - 块和内联元素
- HTML - 样式表
- HTML - 文本格式化
- HTML - 引用
- HTML - 注释
- HTML - 颜色
- HTML - 图像
- HTML - 图像映射
- HTML - iframe
- HTML - 短语标签
- HTML - 类
- HTML - ID
- HTML - 背景
- HTML 表格
- HTML - 表格
- HTML - 表格标题
- HTML - 表格样式
- HTML - 表格 Colgroup
- HTML - 嵌套表格
- HTML 列表
- HTML - 列表
- HTML - 无序列表
- HTML - 有序列表
- HTML - 定义列表
- HTML 链接
- HTML - 文本链接
- HTML - 图片链接
- HTML - 电子邮件链接
- HTML 颜色名称和值
- HTML - 颜色名称
- HTML - RGB 和 RGBA 颜色
- HTML - 十六进制颜色
- HTML - HSL 和 HSLA 颜色
- HTML 表单
- HTML - 表单
- HTML - 表单属性
- HTML - 表单控件
- HTML - 输入属性
- HTML 媒体
- HTML - 视频元素
- HTML - 音频元素
- HTML - 嵌入多媒体
- HTML 标头
- HTML - 头部
- HTML - 网站图标
- HTML - JavaScript
- HTML 布局
- HTML - 布局
- HTML - 布局元素
- HTML - CSS布局
- HTML - 响应式网页设计
- HTML - 特殊符号
- HTML - 表情符号
- HTML - 样式指南
- HTML 图形
- HTML - SVG
- HTML - 画布
- HTML API 接口
- HTML - Geolocation API
- HTML - 拖放 API
- HTML - Web Workers API
- HTML - WebSockets
- HTML - Web 存储
- HTML - 服务器发送事件
- HTML 杂项
- HTML - 数学标记语言
- HTML - 微观数据
- HTML - 索引数据库
- HTML - Web 消息传递
- HTML - CORS
- HTML - Web RTC
- HTML 演示
- HTML - 音频播放器
- HTML - 视频播放器
- HTML - Web 幻灯片台
- HTML 工具
- HTML - 二维码
- HTML - Modernizr
- HTML - 验证器
- HTML 备忘单
- HTML - 标签参考
- HTML - 属性参考
- HTML - 事件参考
- HTML - 字体参考
- HTML - ASCII 代码参考
- HTML - 实体
- MIME 媒体类型
- HTML - URL 编码
- HTML - ISO 语言代码
- HTML - 字符编码
- HTML - 已弃用的标签和属性
HTML - nobr 标签
HTML <nobr> 标签用于指示浏览器不要中断指定的文本(例如通常发生在浏览器窗口右边缘的换行)。
这与 <wbr> 标签一起使用,<wbr> 建议扩展浏览器何时可以在其他不可中断的文本序列中插入换行符。与 <br> 标签不同,即使在 <nobr>- 标记的段中也总是会导致换行符,而 <wbr> 标记仅在放置在 <nobr>- 标记的内容段内时才起作用,并且仅当当前行已经超出浏览器的显示窗口边距时才会导致换行符。
不再建议使用此标记,因为它已弃用,在 HTML5 中不受支持。相反,您可以使用 CSS 属性。
语法
<nobr> Statement </nobr>
属性
HTML <nobr> 标签支持 HTML 的 全局属性 。
<nobr> 标签示例
下面的例子将说明nobr标签的用法。在哪里、何时以及如何使用 nobr 标签来继续句子。
No break 语句
考虑以下示例,我们将在句子上使用 <nobr> 标签。
<!DOCTYPE html>
<html>
<head>
<title>HTML nobr Tag</title>
</head>
<body>
<h3>Normal Paragraph</h3>
<p>
This is a very long sequence of text that
is forced to be on a single line, even if
doing so causes the browser
to extend the document window beyond the
size of the viewing pane and the poor user
must scroll right to read the
entire line.
</p>
<h3>No Break Paragraph</h3>
<nobr>
This is a very long sequence of text that
is forced to be on a single line, even if
doing so causes the browser
to extend the document window beyond the
size of the viewing pane and the poor user
must scroll right to read the
entire line.
</nobr>
</body>
</html>
blockquote 中没有中断语句
正如我们所知,blockquote 元素包裹文本并且不允许滚动,当 non breable 句子到达时,它会强行中断句子,但使用 nobr tah 它不起作用。
<!DOCTYPE html>
<html>
<head>
<title>HTML nobr Tag</title>
<style>
blockquote {
width: 200px;
}
</style>
</head>
<body>
<h3>No Break Paragpagh with Blockquote</h3>
<blockquote>
<nobr>
This is a very long sequence of text that
is forced to be on a single line, even if
doing so causes the browser
to extend the document window beyond the
size of the viewing pane and the poor user
must scroll right to read the
entire line.
</nobr>
</blockquote>
<blockquote>
This is a very long sequence of text that
is forced to be on a single line, even if
doing so causes the browser
to extend the document window beyond the
size of the viewing pane and the poor user
must scroll right to read the
entire line.
</blockquote>
</body>
</html>
支持的浏览器
浏览器 | |||||
---|---|---|---|---|---|
是否支持 | 1.0 | 12.0 | 1.0 | 4.0 | 15.0 |