- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
下面的代码从没有文档类型的图像部分绘制漂亮的椭圆形按钮。原始图像为 143x45 并正确切片。
<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div style="position:absolute; left:200px; top:200px">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="width:19px; height:3px; background-image:url('images/button_01.png')"></td>
<td style="height:3px; background-image:url('images/button_02.png')"></td>
<td style="width:20px; height:3px; background-image:url('images/button_03.png')"></td>
</tr>
<tr>
<td style="width:19px; height:19px; background-image:url('images/button_04.png')"></td>
<td style="background-color:rgb(183,174,130)" rowspan="3">
Some text
</td>
<td style="width:20px; height:19px; background-image:url('images/button_06.png')"></td>
</tr>
<tr>
<td style="width:19px; background-image:url('images/button_07.png')"><img src="images/button_07.png" width="19" height="1" alt=""></td>
<td style="width:20px; background-image:url('images/button_08.png')"><img src="images/button_08.png" width="20" height="1" alt=""></td>
</tr>
<tr>
<td style="width:19px; height:19px; background-image:url('images/button_09.png')"></td>
<td style="width:20px; height:19px; background-image:url('images/button_10.png')"></td>
</tr>
<tr>
<td style="width:19px; height:3px; background-image:url('images/button_11.png')"></td>
<td style="height:3px; background-image:url('images/button_12.png')"></td>
<td style="width:20px; height:3px; background-image:url('images/button_13.png')"></td>
</tr>
</table>
</div>
</body>
但是如果我添加声明
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
到文档的开头,按钮变得更高,好像中间有什么东西。
为什么会这样?是否有可能避免这种行为?哪个更好:找到一种方法使它在 HTML 4.01 上工作或将文档类型更改为更现代的文档类型?
最佳答案
Why is it so?
了解 为什么 事情会以 CSS 中的方式发生并不是大多数网页设计师或网页作者担心的事情。通常,原因涉及 CSS 规范各个部分的交互。这也是为什么浏览器制造商花了这么长时间才使其中的一些正确,因此,为什么当您不使用 DOCTYPE 并因此获得怪癖模式时,您获得的布局行为有时看起来比使用 DOCTYPE 时更直观获取标准模式,严格遵守 CSS 规则。
作者通常知道发生了什么事,以及发生时该怎么做就足够了。更多内容在此答案的底部。
但是,通过一些搜索可以在 CSS 2.1 规范中找到原因。
首先,我们需要了解一些定义:
9.2.1 Block-level elements and block boxes
Block-level elements are those elements of the source document that are formatted visually as blocks (e.g., paragraphs). The following values of the 'display' property make an element block-level: 'block', 'list-item', and 'table'.
...
9.2.2 Inline-level elements and inline boxes
Inline-level elements are those elements of the source document that do not form new blocks of content; the content is distributed in lines (e.g., emphasized pieces of text within a paragraph, inline images, etc.) ....
Inline-level boxes that are not inline boxes (such as replaced inline-level elements, inline-block elements, and inline-table elements) are called atomic inline-level boxes because they participate in their inline formatting context as a single opaque box.
然后,我们还需要了解line box的概念:
9.4.2 Inline formatting contexts
In an inline formatting context, boxes are laid out horizontally, one after the other, beginning at the top of a containing block. Horizontal margins, borders, and padding are respected between these boxes. ... The rectangular area that contains the boxes that form a line is called a line box.
... The height of a line box is determined by the rules given in the section on line height calculations.
...
Line boxes are created as needed to hold inline-level content within an inline formatting context. ...
所以<img>
是一个被替换的内联元素,它建立了一个行内级框,它建立了一个行框,它被布局在一个像<div>
这样的 block 容器对象中。 , 或 <td>
.然后,行框高度由那些行高计算确定:
10.8 Line height calculations: the 'line-height' and 'vertical-align' properties
As described in the section on inline formatting contexts, user agents flow inline-level boxes into a vertical stack of line boxes. The height of a line box is determined as follows:
- The height of each inline-level box in the line box is calculated. For replaced elements, inline-block elements, and inline-table elements, this is the height of their margin box; for inline boxes, this is their 'line-height'. (See "Calculating heights and margins" and the height of inline boxes in "Leading and half-leading".)
- The inline-level boxes are aligned vertically according to their 'vertical-align' property. In case they are aligned 'top' or 'bottom', they must be aligned so as to minimize the line box height. If such boxes are tall enough, there are multiple solutions and CSS 2.1 does not define the position of the line box's baseline (i.e., the position of the strut, see below).
- The line box height is the distance between the uppermost box top and the lowermost box bottom. (This includes the strut, as explained under 'line-height' below.)
通过这些步骤,<img height="1">
本身,只会导致行高为一个像素高,从而留下 strut。这在前导和半前导部分中有描述:
10.8.1 Leading and half-leading
...
On a block container element whose content is composed of inline-level elements, 'line-height' specifies the minimal height of line boxes within the element. The minimum height consists of a minimum height above the baseline and a minimum depth below it, exactly as if each line box starts with a zero-width inline box with the element's font and line height properties. We call that imaginary box a "strut." ...
The height and depth of the font above and below the baseline are assumed to be metrics that are contained in the font. ...
所以我们有它。行框,由 <img>
创建元素,在开始处有一个假想的行内框,其高度由字体大小决定,这导致行框足够高以包含该字体的字符。
Is it possible to avoid such behavior?
从上面的解释来看,有两种选择:
行框是从内联<img>
创建的元素。所以如果把元素改成 block 级元素,就没有line box了,也没问题。
即在 CSS 中 td img { display:block; }
由于高度是由依赖于字体大小的支柱引起的,因此在该处将字体大小更改为 0 也解决了问题。
即在 CSS 中 tr:nth-of-type(3) td { font-size:0px }
(您可能希望在第三个 <tr>
上放置一个类并使用它代替 :nth-of-type(3)
以与不支持 CSS 3 的浏览器兼容)
What is better: find a way to make this working on HTML 4.01 or change doctype to more modern one?
最现代的是<!DOCTYPE html>
.您的页面将与 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
完全相同,因为两者都会在浏览器中导致标准模式。
关于html - 为什么文档类型对大小的影响如此之大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8634498/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!