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;}
这篇关于我可以给标题标签一个颜色和不同的字体吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我可以给标题标签一个颜色和不同的字体吗?
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01