Can I give a title tag a color and different font?(我可以给标题标签一个颜色和不同的字体吗?)
问题描述
我想知道是否有办法在页面选项卡中为页面标题赋予不同的颜色和字体.比如:
I was wondering if there is a way to give a page title a different color and font in the page tab. Something like:
title{ color: red; font: 12px tahoma;}
只是觉得添加到网站会很有趣.我尝试了上述方法,但它在我的 CSS 文件中不起作用.还尝试给它一个 class="title" 给它一个 CSS 样式 .title{ color: red;font: 12px tahoma;} 但这也不起作用.
Just thought it would be fun to add into sites. I tried the above and it didn't work in my CSS file. Also tried giving it a class="title"giving it a CSS style of .title{ color: red; font: 12px tahoma;} but that didn't work either.
推荐答案
答案是 NO 你不能以任何方式这样做......你不能将任何样式应用于页面标题,顺便说一句你可以只是闪烁标题
Answer is NO you cannot do that in any way....you cannot apply any styles to page title, btw you can just blink the titles
闪烁标题
有关您正在使用的 CSS 的更多信息:
More Info On CSS Which You Are Using:
如果您要声明这样的内容
If you are declaring something like this
title{ color: red; font: 12px tahoma;}
您不需要定义任何类,因为您针对的是整个文档中只有 1 个的特定标题标签
You don't need to define any class as you are targeting specific title tag which is only 1 in your whole document
如果您使用的是 .title,那么您的 CSS 应该是
And if you are using .title than your CSS should be
.title{ color: red; font: 12px tahoma;}
这篇关于我可以给标题标签一个颜色和不同的字体吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我可以给标题标签一个颜色和不同的字体吗?
基础教程推荐
- 在 contenteditable 中精确拖放 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
