環境
Google Chrome 106.0.5249.119
Windows 10 Home 64bit

構文
要素名[属性名^="値"]
指定の属性の値で始まる要素にCSSを適用します。

name属性の値で始まる
input[name^="値"]
name属性は、指定の値で始まっているのでCSSが適用されます。

使用例

<!DOCTYPE html>
<html>
<head>
<style>
input[name^="city"]{
    background-color:skyblue;
    color:red;
}
</style>
</head>
<body>
<input type="text" name="cityaa" value="toto" maxlength="5">
<p><input type="text" name="huu123" value="oosa" maxlength="5"></p>
</body>
</html>

結果
文字「toto」行の文字色(red)、背景色(skyblue)をします

CSS

Posted by arkgame