CSS 設定文字框游標顏色

admin發表於2018-12-11

本文介紹一下如何設定文字框邊框顏色。

使用color屬性設定,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
input{
  width:180px;
  height:20px;
  color:blue;
}
</style>
</head>
<body>
<input type="text">
</body>
</html>

程式碼執行效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/201812/11/132822czr51z1777hh2dnh.png\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

游標顏色確實是藍色,但是有個問題,就是文字顏色也是藍色。

很多時候,可能只需要游標是藍色的,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
input{
  width:180px;
  height:20px;
  caret-color:red;
}
</style>
</head>
<body>
<input type="text">
</body>
</html>

程式碼執行效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/201812/11/132845e5i88ifkczfwdcft.png\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

通過caret-color屬性即可實現設定功能。

IE和edge瀏覽器並不支援此屬性,好在當前這兩個瀏覽器使用者並不是太多。

相關文章