问题标签 [stylesheet]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
6 回答
36746 浏览

css - 浏览器的默认 CSS 样式表

是否有针对不同浏览器的默认 CSS 样式表列表?(表格形式的浏览器样式表)

我想知道所有浏览器中文本区域的默认字体以供将来参考。

0 投票
7 回答
26011 浏览

html - 使用条件注释定位 IE8 是否有效?

当 IE8 发布时,以下代码是否可以添加条件样式表?

我已经阅读了关于这是否适用于测试版的相互矛盾的报告。我希望有人可以分享他们的经验。谢谢。

0 投票
4 回答
15580 浏览

html - 如何覆盖全局样式表

简而言之,有一个全局样式表:

我想为特定链接使用不同的字体系列:

或者

但没有任何效果。是否有捷径可寻?

PS我动态地(通过PHP)为不同的链接分配不同的字体,所以创建一个特殊的类不是一个选项。

0 投票
5 回答
1426 浏览

css - 这就是您构建 CSS 样式表的方式吗?

抛开应该提供单个样式表还是多个样式表的问题不谈,假设您只发送一个样式表,您认为这是什么基本结构?

/* 结构 */

任何模板布局的东西都应该放在这里,所以页眉、页脚、正文等。

/* 结构结束 */

/* 通用组件*/

重复的元素,例如注册表单、列表等。

/* 常用组件结束*/

/* 特定页面 1 */

有些页面可能有特定的样式,会放在这里。

/* 具体第 1 页结束 */

/* 特定页面 2 */

如上

/* 具体的第 2 页结束 */

/* 特定页面等 */

等等。

/* 特定页面等结束 */

0 投票
10 回答
20434 浏览

html - How can I locate the default style sheet for a browser?

I would like to see the specific style elements that are used in the default stylesheet for the various browsers. Do the browsers have an actual file based stylesheetss that I locate on my system and read? If so, what are the default locations of those files? If not, where I can find this information?

0 投票
16 回答
475156 浏览

html - 当 CSS 中存在填充时,如何使 TextArea 的宽度为 100% 而不会溢出?

我正在呈现以下 CSS 和 HTML 片段。

问题是文本区域最终比父区域宽 8 像素(边框 2 像素 + 填充 6 像素)。有没有办法继续使用边框和填充但将总大小限制textarea为父级的宽度?

0 投票
1 回答
460 浏览

ruby-on-rails - Rails:整洁的样式表

任何人都知道如何采用教程中提到的很棒的方法并使用绝对 URL生成样式表标签吗?

0 投票
3 回答
2353 浏览

apache-flex - 更改运行时 css 时,Flex 中的多行文本不会重新计算

出于加载时间的考虑,我在我的 Flex 应用程序中使用了运行时 css 文件。

我在使用多行文本控件时遇到问题:

当我的 CSS 样式表已正确加载文本样式时,会发生更改,但不会重新计算高度。它似乎只是一个单行字段。

仅供参考:控件实际上是不可见的,并且由翻转触发。所以我真的不在乎样式表是否没有加载并且他们得到标准的系统文本。我只是希望它在加载时是正确的高度。

0 投票
7 回答
926 浏览

html - Even column heights without using a TABLE

Is there a way to have two columns, that match each other in height, without using table cells, fixed heights or Javascript?

Using a TABLE

Using DIVs

The goal is to make both backgrounds extend the full height regardless of which side is taller.

Nesting one in the other wouldn't work because it doesn't guarantee both side are the correct height.

Unfortunately, the preview showed the working HTML, but the actual post stripped it out. You should be able to paste this into an HTML file and see what I mean.

0 投票
2 回答
4367 浏览

javascript - 如果打印样式表生效,如何通过 Javascript 检测?

我想在网页上的打印样式表期间有替代行为。类似于以下内容:

如果正在打印此页面,请不要费心调用 SWFObject 来召唤 .swf 存在。只需保留 Flash 将替换的 HTML。

我已经尝试过诸如将已知元素设置为屏幕存在的已知样式但不用于打印样式表之类的方法。但是通过 Javascript 获得“样式”并不能获得计算样式。

摘要:以跨浏览器的方式,是否可以判断哪个样式表有效?