css链接样式_CSS中的样式链接

css链接样式

CSS样式链接 (CSS Styling Links)

The links in CSS can be styled in various ways to make our website more presentable and attractive. The links can also be styled depending on their states e.g. visited, active, hover, etc.

CSS中链接可以通过各种方式设置样式,以使我们的网站更具外观和吸引力。 也可以根据链接的状态来设置链接的样式,例如访问 , 活动 , 悬停等。

The four links states are,

四个链接状态为:

  1. a:link: a normal, unvisited link

    a:link :一个普通的,未访问的链接

  2. a:visited: a link that user has visited

    a:visited :用户访问过的链接

  3. a:hover: a link the moment user mouses over it

    a:hover :用户将鼠标悬停在其上时的链接

  4. a:active: a link when it is clicked

    a:active :单击时的链接

There are various methods to style our links, some of them are listed below,

链接的样式有多种方法,下面列出了其中的一些方法,

颜色 (Color)

The color of the links can be altered with whatever you decide to pick. As mentioned the links can be styled depending on their states.

链接的颜色可以根据您选择的内容进行更改。 如前所述,可以根据链接的状态来设置链接的样式。

Syntax:

句法:

    a:link{
color:red;
}

Example:

例:

<!DOCTYPE html>
<head>
<style>
a:link {
background-color: red;
color: white;
}
a:active {
background-color: black;
}
</style>
</head>
<html>
<body>
<a href="#">It's a link1</a>
<br/>
<a href="#">It's a link2</a>
<br/>
<a href="#">It's a link3</a>
<br/>
<a href="#">It's a link3</a>
<br/>
</body>
</html>

Output

输出量

styling link in CSS | Example 1

The above code sets white color to the link.

上面的代码将白色设置为链接。

文字装饰 (Text Decoration)

The text-decoration is the most commonly used property when it comes to styling links.

当涉及样式链接时, 文本装饰是最常用的属性。

The text-decoration property is used to remove or set underlines on links. The possible values of text-decoration are: none, underline, overline, blink, line-through and inherit.

text-decoration属性用于删除或设置链接上的下划线。 文本修饰的可能值为: none , 下划线 ,上划线 , 闪烁 , 直通和继承 。

Syntax:

句法:

    a:link{
text-decoration:none;
}

Example:

例:

<!DOCTYPE html>
<head>
<style>
a:link {
text-decoration: none;
}
a:hover {
text-decoration: overline;
}
</style>
</head>
<html>
<body>
<a href="#">It's a link1</a>
<br/>
<a href="#">It's a link2</a>
<br/>
<a href="#">It's a link3</a>
<br/>
<a href="#">It's a link3</a>
<br/>
</body>
</html>

Output

输出量

styling link in CSS | Example 2

The above code sets the decoration to the link and overline, when we hover on the link.

当我们将鼠标悬停在链接上时,上面的代码将装饰设置为链接和overline 。

背景颜色 (Background Color)

The background-color is yet another most commonly used property to set the background color of our links so that they appear flashy and once any visitor visits your site, they won’t be able to ignore that link.

background-color是设置链接背景色的另一个最常用的属性,以使它们显得浮华,一旦任何访问者访问您的站点,他们将无法忽略该链接。

Syntax:

句法:

    a:link{
background-color:red;
}

Example:

例:

<!DOCTYPE html>
<head>
<style>
a:link {
background-color: red;
}
a:hover {
background-color: pink;
}
</style>
</head>
<html>
<body>
<a href="#">It's a link1</a><br/>
<a href="#">It's a link2</a><br/>
<a href="#">It's a link3</a><br/>
<a href="#">It's a link3</a><br/>
</body>
</html>

Output

输出量

styling link in CSS | Example 3

The above code sets the background-color to the link when we hover on the link.

当我们将鼠标悬停在链接上时,上面的代码将背景色设置为链接。

翻译自: https://www.includehelp.com/code-snippets/styling-links-in-css.aspx

css链接样式

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377295.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《MySQL——约束》

目录主键约束唯一主键非空约束默认约束外键约束主键约束 -- 主键约束 -- 使某个字段不重复且不得为空&#xff0c;确保表内所有数据的唯一性。 CREATE TABLE user (id INT PRIMARY KEY,name VARCHAR(20) );-- 联合主键 -- 联合主键中的每个字段都不能为空&#xff0c;并且加起…

UIControl事件

CHENYILONG BlogUIControl事件 FullscreenUIControl事件1.UIControlEventTouchDown单点触摸按下事件&#xff1a;用户点触屏幕&#xff0c;或者又有新手指落下的时候。2.UIControlEventTouchDownRepeat多点触摸按下事件&#xff0c;点触计数大于1&#xff1a;用户按下第二、三、…

C++ 为什么要使用#ifdef __cplusplus extern C { #endif

经常看到别人的头文件 有这样的代码 #ifdef __cplusplus extern "C" { #endif// C 样式 的函数#ifdef __cplusplus } #endif 为什么要这样呢&#xff1f; 因为 C 语言不支持重载函数 也就是同名函数&#xff0c;参数却不一样,C支持&#xff0c;其编译器对函数名的处理…

css中的媒体查询_CSS中的媒体查询

css中的媒体查询CSS | 媒体查询 (CSS | Media Queries) Creating a web page is not an easy task as it requires loads of content and data so that it becomes strongly responsive to the users. To do that various contents are even added e.g.: resources, informativ…

SharePoint2013安装组件时AppFabric时出现1603错误,解决方法:

采用PowerShell命令批量下载必备组件: 下载完成后&#xff0c;采用批处理命令安装必备组件。 注&#xff1a;SPS2013安装必备组件及批处理下载地址&#xff1a; 需要将必备组件放在安装文件的PrerequisiteInstallerFiles文件夹中&#xff0c;将PreReq2013.bat放在安装文件根目录…

《MySQL——数据表设计三大范式》

目录数据表设计范式第一范式第二范式第三范式数据表设计范式 第一范式 数据表中的所有字段都是不可分割的原子值。 字段值还可以继续拆分的&#xff0c;就不满足第一范式&#xff0c;如下&#xff1a; 下面这个&#xff0c;更加贴合第一范式&#xff1a; 范式设计得越详细&…

三道简单树型dp+01背包~~hdu1561,poj1947,zoj3626

以前学树型dp就是随便的看了几道题&#xff0c;没有特别注意树型dp中的小分类的总结&#xff0c;直到上次浙大月赛一道很简单的树型dp都不会&#xff0c;才意识到自己太水了&#xff5e;&#xff5e;come on&#xff01; hdu1561&#xff1a;题目给出了很多棵有根树&#xff0c…

css 字体图标更改颜色_在CSS中更改字体

css 字体图标更改颜色CSS字体属性 (CSS font properties ) Font properties in CSS is used to define the font family, boldness, size, and the style of a text. CSS中的字体属性用于定义字体系列 &#xff0c; 粗体 &#xff0c; 大小和文本样式 。 Syntax: 句法&#xf…

深入new/delete:Operator new的全局重载

Operator new 的全局重载 原文地址&#xff1a;http://blog.csdn.net/zhenjing/article/details/4354880 我们经常看到这么一句话&#xff1a; operator new 可以重载&#xff0c; placement new 不可重载。其实此处所说的不可重载应该是指全局的 placement new 不可重载&#…

C++基础知识点整理

基本语法 1、static关键字的作用 1、全局静态变量 加了static关键字的全局变量只能在本文件中使用。 存储在静态存储区&#xff0c;整个程序运行期间都存在。 2、局部静态变量 作用域仍为局部作用域。 不过离开作用域之后&#xff0c;并没有销毁&#xff0c;而是贮存程序中&a…

Haskell学习笔记

《learn you a Haskell》这书的结构与常见的语言入门教材完全不一样。事实上&#xff0c;即使学到第八章&#xff0c;你还是写不出正常的程序…因为到现在为止还没告诉你入口点模块怎么写&#xff0c;IO部分也留在了最后几章才介绍。最重要的是&#xff0c;没有系统的总结数据类…

组合问题 已知组合数_组合和问题

组合问题 已知组合数Description: 描述&#xff1a; This is a standard interview problem to make some combination of the numbers whose sum equals to a given number using backtracking. 这是一个标准的面试问题&#xff0c;它使用回溯功能将总和等于给定数字的数字进…

可变参数模板、右值引用带来的移动语义完美转发、lambda表达式的理解

可变参数模板 可变参数模板对参数进行了高度泛化&#xff0c;可以表示任意数目、任意类型的参数&#xff1a; 语法为&#xff1a;在class或者typename后面带上省略号。 Template<class ... T> void func(T ... args) {// }T:模板参数包&#xff0c;args叫做函数参数包 …

BI-SqlServer

一.概述 SqlServer数据仓库ETL组件 IntegrationServiceOLAP组件 AnalysisService报表 ReportingServiceMDX(查多维数据集用的)和DMX(查挖掘模型用的)。二.商业智能-Analysis Services 项目 构建挖掘模型1构建挖掘模型2构建挖掘模型3三.商业智能-SqlServerAnalysis-Asp.net WebS…

python 子图大小_Python | 图的大小

python 子图大小In some cases, the automatic figure size generated by the matplotlib.pyplot is not visually good or there could be some non-acceptable ratio in the figure. So, rather than allowing a pyplot to decide the figure size, we can manually define t…

《设计模式整理》

目录常见设计模式如何保证单例模式只有一个实例单例模式中的懒汉与饿汉模式OOP设计模式的五项原则单例模式中的懒汉加载&#xff0c;如果并发访问该怎么做常见设计模式 单例模式&#xff1a; 单例模式主要解决了一个全局使用的类频繁的创建和销毁的问题。 单例模式下确保某一个…

JSON学习资料整理

1.什么是JSON JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。它基于JavaScript的一个子集。 JSON采用完全独立于语言的文本格式&#xff0c;但是也使用了类似于C语言家族的习惯&#xff08;包括C, C, C#, Java, JavaScript, Perl, Python等&#xff09;。这些…

OSI七层模型及其数据的封装和解封过程

OSI(Open System Interconnection)参考模型把网络分为七层: 1.物理层(Physical Layer) 物理层主要传输原始的比特流,集线器(Hub)是本层的典型设备; 2.数据链路层(Data Link Layer) 数据链路层负责在两个相邻节点间无差错的传送以帧为单位的数据,本层的典型设备是交换机(Switch)…

rss聚合模式案例_RSS的完整形式是什么?

rss聚合模式案例RSS&#xff1a;真正简单的联合 (RSS: Really Simple Syndication) RSS is an abbreviation of Really Simple Syndication. It is also called Rich Site Summary. It is quality attainment for the syndication of collection of web content and used to di…

《MySQL——38道查询练习(无连接查询)》

目录一、准备数据1、创建数据库2、创建学生表3、创建教师表4、创建课程表5、创建成绩表6、添加数据二、查询练习1、查询 student 表的所有行2、查询 student 表中的 name、sex 和 class 字段的所有行3、查询 teacher 表中不重复的 department 列4、查询 score 表中成绩在60-80之…