Table of Contents
回复讨论(解决方案)
Home Web Front-end HTML Tutorial 【100分】关于css优先级的问题,请高手大大们出谋划策!_html/css_WEB-ITnose

【100分】关于css优先级的问题,请高手大大们出谋划策!_html/css_WEB-ITnose

Jun 21, 2016 am 08:55 AM

今天在项目中遇到一个css问题,描述如下:
页面有个内容为font-weight的各选项值的下拉框列表,如图:
它的源码:

<select id="ue_richbox_weight" style="width:80px;height:20px;margin:0 2px;" onchange="UEditor.menu_click(this,'style',{fontFamily: this.value});"><option value="Lighter" style="font-weight:lighter">Lighter</option><option value="100" style="font-weight:100">100</option><option value="200" style="font-weight:200">200</option><option value="300" style="font-weight:300">300</option><option value="400(nomal)" style="font-weight:400">400(nomal)</option><option value="500" style="font-weight:500">500</option><option value="600" style="font-weight:600">600</option><option value="700(bold)" style="font-weight:700">700(bold)</option><option value="800" style="font-weight:800">800</option><option value="900" style="font-weight:900">900</option><option value="Bolder" style="font-weight:lighter">Bolder</option></select>
Copy after login

我要实现的效果是,下拉框的文字样式跟它的文字相对应,这样用户选择的时候就很直观。
但实际的情况是,在ie里显示跟预期的一样,但在chrome和firefox里完全失效。
而网查了很多资料,没有哪里说这个样式有兼容问题,
并且产生的原因也找到了:
就是浏览器默认样式优先级高于我的内嵌样式。。。。。。这完全说不过去啊!!!!!!!!
因为所有的资料都说内嵌样式优先级最高!!
并且,我加上!important也没用,这真是太神奇了!!!!!

请高手们帮我想想办法吧,实在是太郁闷了!!!


回复讨论(解决方案)

用这个吧!

<select>  <optgroup label="123123" style="font-weight:bold">123123</optgroup>  <option value="Lighter" style="font-weight:lighter">    Lighter  </option></select>
Copy after login
Copy after login

用这个吧!

<select>  <optgroup label="123123" style="font-weight:bold">123123</optgroup>  <option value="Lighter" style="font-weight:lighter">    Lighter  </option></select>
Copy after login
Copy after login


都试过了,无效

那就不要用select标签了

那就不要用select标签了


要回避这个问题有很多方法,现在是想要解决这个问题,
我就是不服气,font-weight是通用标签样式,css的优先级也是大家都认可且通用的,font-family,font-size等也都可以,为什么唯独这个font-weight不行,是不是别的什么问题干扰了而我们不知道的

这不是优先级的问题,是浏览器根本不支持某元素设置某些样式。

你别的元素做个模拟的下拉框好了

这不是优先级的问题,是浏览器根本不支持某元素设置某些样式。

你别的元素做个模拟的下拉框好了


你说的不对,仔细看看题目,浏览器是支持这个样式的,只是我的样式被覆盖了


这不是优先级的问题,是浏览器根本不支持某元素设置某些样式。

你别的元素做个模拟的下拉框好了


你说的不对,仔细看看题目,浏览器是支持这个样式的,只是我的样式被覆盖了
我是说某些元素的某些样式是固定的,不支持用户的修改。这与css优先级没关系

别纠结了。。。
最开始浏览器出于安全考虑不允许对表单控件的某些样式修改,避免网页欺骗用户诱导用户做出错误的行为。
option 是内部属性,是不能直接修改的,有些样式可以通过父元素select修改,有些得有JS才行。
你想修改option样式,可以通过模拟或者JS等其他方法修改。

你非要内嵌这个东西,除非你去让人家重新定义标准。。。。

你非要内嵌这个东西,除非你去让人家重新定义标准。。。。


那你怎么解释,同一个页面同一个浏览器,我有三个下拉框,一个是font-size,一个是font-family,他们都是好的,就这个font-weight不行????

恩恩 我也试过了  偏偏就是这个不行,,这也没办法,人家浏览器就是这么规定的。

算了,结帖了,现在看来,多半是w3c标准执行中的一个bug吧,不知道会不会被修复。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles