CSSを使用してチェックボックスのサイズを変更できますか?


459

ブラウザ間でCSSまたはHTMLを使用してチェックボックスのサイズを設定することは可能ですか?

widthそして、sizeIE6 +での作業ではなく、私は小さいサイズを設定しても、チェックボックスステー16×16のFirefox、と。


3
これはクロスブラウザを行うのが難しいです。ロジャー・ヨハンソンはこれをかなり広範囲に調査しました。
クリスティアンリバルド2008年

すべてのコメントを読む-CSSを使用せずにこれを行うには本当に簡単な方法があります:<input type = "checkbox" name = "checkboxName" value = "on" style = "width:110%; height:110%">
Williamz902

この単純なアンスを使用します。stackoverflow.com/questions/57805394/...
Pritesh

@ Williamz902 style=タグはCSSです...
Tiebe Groosman

回答:


434

(スケールアップのため)少し醜いですが、ほとんどの新しいブラウザーで動作します。

input[type=checkbox]
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  transform: scale(2);
  padding: 10px;
}

/* Might want to wrap a span around your checkbox text */
.checkboxtext
{
  /* Checkbox text */
  font-size: 110%;
  display: inline;
}
<input  type="checkbox" name="optiona" id="opta" checked />
<span class="checkboxtext">
  Option A
</span>
<input type="checkbox" name="optionb" id="optb" />
<span class="checkboxtext">
  Option B
</span>
<input type="checkbox" name="optionc" id="optc" />
<span class="checkboxtext">
  Option C
</span>


3
これは正しい答えのようです。回答としてマークされたものは多くの場合解決策を提供せず(XPのFirefoxに対する解決策はありませんか?Chromeはまったくありませんか?)、古く、リンクとあまり価値のないコメントしか含まれていません。
nurettin 2013

4
この回答の@jdw +1。私もこれを行う必要があり、あなたの回答は役に立ちました。しかし、どういうわけか、「スケーリングされた」チェックボックスが少し歪んで見えることがわかりました。これがFFの問題なのか、私のOS(Ubuntu 12.04)の問題なのかはわかりません。とにかくありがとう:)
itols 2013年

1
scale()には、Chrome、FF、IEの2つのパラメーターが必要だと思います。したがって、すべてのスケールをscale(2,2)に変更するだけで、すべてのブラウザーで機能するはずです。
Onur Topal 2013年

10
さらに追加しtransform: scale(2);て、どのブラウザーでもより確実に
Adriano Resende

8
スケーリングは素晴らしいです、スケール2ではすでに個々のピクセルが表示されています。美しい大きなcssチェックボックスにこのソリューションを選択することはありません。
basZero、

369

最新のすべてのブラウザに対応するソリューション。

input[type=checkbox] {
    transform: scale(1.5);
}
<label><input type="checkbox"> Test</label>


互換性:

  • IE:10以上
  • FF:16歳以上
  • Chrome:36以上
  • Safari:9以上
  • オペラ:23+
  • iOS Safari:9.2+
  • Android版Chrome:51以上

外観:

  • Chrome、Win 10のスケーリングされたチェックボックス Chrome 58(2017年5月)、Windows 10

これは、IE 8などの古いブラウザをカバーしていますか?
Huangism 2014

1
@Huangismいいえ、上記のコードは、transformプロパティをサポートしていないIE 8では効果がありません。IE 9は-ms-transformどちらを使用できるかをサポートしていますが、かなりピクセル化されているため、IE 9をデフォルトのままにしておく方がよいと言う人もいます。
Simon East

チェックボックスがピクセル化されるため、スケールには制限があるため、アプローチは悪くありません。
rishiAgar

9
macOS 10.13.3を搭載したChrome 64で非常にピクセル化:(timo-ernst.net/misc/zeug/cb-pixel.jpg
Timo

Chrome 76ではまだピクセル化されています
ラブラドール

68

簡単な解決策は、プロパティを使用することzoomです:

input[type="checkbox"] {
    zoom: 1.5;
}
<input type="checkbox" />


8
すべてのブラウザで機能するかどうかはわかりませんが、画面上ではスケール変換ソリューションよりもきれいに見えます。
Gwened

2
macOS 10.13.3を搭載したChrome 64では、これは変換+スケールを使用するよりもピクセル化が少ないように見えます
Timo

Mozillaには非常に非推奨です。 developer.mozilla.org/en-US/docs/Web/CSS/zoom
Trade-Ideas Philip

Firefoxがそれをサポートしていないほとんど唯一のブラウザである一方で、Mozillaがそれを推奨しないのはちょっと興味深いです。caniuse.com

47

2020バージョン -擬似要素を使用、サイズはフォントサイズに依存します。

デフォルトのチェックボックス/ラジオは画面の外にレンダリングされますが、CSSはデフォルトの要素と非常によく似た仮想要素を作成します。すべてのブラウザをサポートし、ぼやけません。サイズはフォントサイズに依存します。キーボード操作(スペース、タブ)もサポートされています。

https://jsfiddle.net/ohf7nmzy/2/

body{
	padding:0 20px;
}
.big{
	font-size: 50px;
}

/* CSS below will force radio/checkbox size be same as font size */
label{
	position: relative;
	line-height: 1.4;
}
/* radio */
input[type=radio]{
	width: 1em;
	font-size: inherit;
	margin: 0;
	transform: translateX(-9999px);
}
input[type=radio] + label:before{
	position: absolute;
	content: '';
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border:none;
	border-radius: 50%;
	background-color: #bbbbbb;
}
input[type=radio] + label:after{
	position: absolute;
	content: '';
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border: none;
	background-color: white;
	border-radius: 50%;
	transform: scale(0.8);
}
/*checked*/
input[type=radio]:checked + label:before{
	position:absolute;
	content:'';
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border: none;
	background-color: #3b88fd;
}
input[type=radio]:checked + label:after{
	position: absolute;
	content: '';
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border: none;
	background-color: white;
	border-radius: 50%;
	transform: scale(0.3);
}
/*focused*/
input[type=radio]:focus + label:before{
	border: 0.2em solid #8eb9fb;
	margin-top: -0.2em;
	margin-left: -0.2em;
	box-shadow: 0 0 0.3em #3b88fd;
}


/*checkbox/*/
input[type=checkbox]{
	width: 1em;
	font-size: inherit;
	margin: 0;
	transform: translateX(-9999px);
}
input[type=checkbox] + label:before{
	position: absolute;
	content: '';
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border:none;
	border-radius: 10%;
	background-color: #bbbbbb;
}
input[type=checkbox] + label:after{
	position: absolute;
	content: '';
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border: none;
	background-color: white;
	border-radius: 10%;
	transform: scale(0.8);
}
/*checked*/
input[type=checkbox]:checked + label:before{
	position:absolute;
	content:'';
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border: none;
	background-color: #3b88fd;
}
input[type=checkbox]:checked + label:after{
	position: absolute;
	content: "\2713";
	left: -1.3em;
	top: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	border: none;
	background-color: #3b88fd;
	border-radius: 10%;
	color: white;
	text-align: center;
	line-height: 1;
}
/*focused*/
input[type=checkbox]:focus + label:before{
	border: 0.1em solid #8eb9fb;
	margin-top: -0.1em;
	margin-left: -0.1em;
	box-shadow: 0 0 0.2em #3b88fd;
}
<input type="checkbox" name="checkbox_1" id="ee" checked /> 
<label for="ee">Checkbox small</label>

<br />

<input type="checkbox" name="checkbox_2" id="ff" /> 
<label for="ff">Checkbox small</label>

<hr />

<div class="big">
	<input type="checkbox" name="checkbox_3" id="gg" checked /> 
	<label for="gg">Checkbox big</label>

	<br />

	<input type="checkbox" name="checkbox_4" id="hh" /> 
	<label for="hh">Checkbox big</label>
</div>


<hr />


<input type="radio" name="radio_1" id="aa" value="1" checked /> 
<label for="aa">Radio small</label>

<br />

<input type="radio" name="radio_1" id="bb" value="2" /> 
<label for="bb">Radio small</label>

<hr />

<div class="big">
	<input type="radio" name="radio_2" id="cc" value="1" checked /> 
	<label for="cc">Radio big</label>

	<br />

	<input type="radio" name="radio_2" id="dd" value="2" /> 
	<label for="dd">Radio big</label>
</div>

2017バージョン -ズームまたはスケールの使用

ブラウザzoomは、サポートされている(素晴らしい品質)または標準transform: scale(ぼやけている)の場合、非標準機能を使用します。

スケーリングはすべてのブラウザーで機能しますが、FirefoxとSafariではぼやけます。

https://jsfiddle.net/ksvx2txb/11/

@supports (zoom:2) {
	input[type="radio"],  input[type=checkbox]{
	zoom: 2;
	}
}
@supports not (zoom:2) {
	input[type="radio"],  input[type=checkbox]{
		transform: scale(2);
		margin: 15px;
	}
}
label{
  /* fix vertical align issues */
	display: inline-block;
	vertical-align: top;
	margin-top: 10px;
}
<input type="radio" name="aa" value="1" id="aa" checked /> 
<label for="aa">Radio 1</label>
<br />
<input type="radio" name="aa" value="2" id="bb" /> 
<label for="bb">Radio 2</label>

<br /><br />

<input  type="checkbox" name="optiona" id="cc" checked /> 
<label for="cc">Checkbox 1</label>
<br />
<input  type="checkbox" name="optiona" id="dd" /> 
<label for="dd">Checkbox 1</label>


ズームはFQで正常に動作するように見えます。古いバージョンのGeckoに気をつけているのではないでしょうか?
Neil Chowdhury

27

私はこれで出てきました:

input[type="checkbox"] {display:none;}
input[type="checkbox"] + label:before {content:"☐";}
input:checked + label:before {content:"☑";}
label:hover {color:blue;}
<input id="check" type="checkbox" /><label for="check">Checkbox</label>

もちろん、これにより、の値をcontentニーズに合わせて変更したり、必要に応じて画像を使用したり、別のフォントを使用したりできます...

ここでの主な関心は以下のとおりです。

  1. チェックボックスのサイズはテキストのサイズに比例します

  2. チェックボックスのアスペクト、色、サイズを制御できます

  3. 追加のHTMLは必要ありません。

  4. 必要なCSSは3行だけです(最後の行はアイデアを与えるためのものです)

編集:コメントで指摘されているように、キーナビゲーションではチェックボックスにアクセスできません。tabindex=0ラベルをフォーカス可能にするために、ラベルのプロパティとして追加する必要があります。


2
残念ながら、display:none入力を設定すると、tabキーで選択できなくなるため、これは良い考えではないと思います。
Harfangk 2018年

2
良い発言。これを修正するには、入力にtabindex = 0を追加します。
Sharcoux

26

プレビュー:http :
//jsfiddle.net/h4qka9td/

*,*:after,*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.switch {
  margin: 50px auto;
  position: relative;
}

.switch label {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.switch input {
  top: 0; 
  right: 0; 
  bottom: 0; 
  left: 0;
  opacity: 0;
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* DEMO 3 */

.switch.demo3 {
  width: 180px;
  height: 50px;
}

.switch.demo3 label {
  display: block;
  width: 100%;
  height: 100%;
  background: #a5a39d;
  border-radius: 40px;
  box-shadow:
      inset 0 3px 8px 1px rgba(0,0,0,0.2),
      0 1px 0 rgba(255,255,255,0.5);
}

.switch.demo3 label:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8px; right: -8px; bottom: -8px; left: -8px;
  border-radius: inherit;
  background: #ababab;
  background: -moz-linear-gradient(#f2f2f2, #ababab);
  background: -ms-linear-gradient(#f2f2f2, #ababab);
  background: -o-linear-gradient(#f2f2f2, #ababab);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#ababab));
  background: -webkit-linear-gradient(#f2f2f2, #ababab);
  background: linear-gradient(#f2f2f2, #ababab);
  box-shadow: 0 0 10px rgba(0,0,0,0.3),
        0 1px 1px rgba(0,0,0,0.25);
}

.switch.demo3 label:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px; right: -18px; bottom: -18px; left: -18px;
  border-radius: inherit;
  background: #eee;
  background: -moz-linear-gradient(#e5e7e6, #eee);
  background: -ms-linear-gradient(#e5e7e6, #eee);
  background: -o-linear-gradient(#e5e7e6, #eee);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#e5e7e6), to(#eee));
  background: -webkit-linear-gradient(#e5e7e6, #eee);
  background: linear-gradient(#e5e7e6, #eee);
  box-shadow:
      0 1px 0 rgba(255,255,255,0.5);
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  -ms-filter: blur(1px);
  -o-filter: blur(1px);
  filter: blur(1px);
}

.switch.demo3 label i {
  display: block;
  height: 100%;
  width: 60%;
  border-radius: inherit;
  background: silver;
  position: absolute;
  z-index: 2;
  right: 40%;
  top: 0;
  background: #b2ac9e;
  background: -moz-linear-gradient(#f7f2f6, #b2ac9e);
  background: -ms-linear-gradient(#f7f2f6, #b2ac9e);
  background: -o-linear-gradient(#f7f2f6, #b2ac9e);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f2f6), to(#b2ac9e));
  background: -webkit-linear-gradient(#f7f2f6, #b2ac9e);
  background: linear-gradient(#f7f2f6, #b2ac9e);
  box-shadow:
      inset 0 1px 0 white,
      0 0 8px rgba(0,0,0,0.3),
      0 5px 5px rgba(0,0,0,0.2);
}

.switch.demo3 label i:after {
  content: "";
  position: absolute;
  left: 15%;
  top: 25%;
  width: 70%;
  height: 50%;
  background: #d2cbc3;
  background: -moz-linear-gradient(#cbc7bc, #d2cbc3);
  background: -ms-linear-gradient(#cbc7bc, #d2cbc3);
  background: -o-linear-gradient(#cbc7bc, #d2cbc3);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#cbc7bc), to(#d2cbc3));
  background: -webkit-linear-gradient(#cbc7bc, #d2cbc3);
  background: linear-gradient(#cbc7bc, #d2cbc3);
  border-radius: inherit;
}

.switch.demo3 label i:before {
  content: "off";
  text-transform: uppercase;
  font-style: normal;
  font-weight: bold;
  color: rgba(0,0,0,0.4);
  text-shadow: 0 1px 0 #bcb8ae, 0 -1px 0 #97958e;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: -50%;
}

.switch.demo3 input:checked ~ label {
  background: #9abb82;
}

.switch.demo3 input:checked ~ label i {
  right: -1%;
}

.switch.demo3 input:checked ~ label i:before {
  content: "on";
  right: 115%;
  color: #82a06a;
  text-shadow: 
    0 1px 0 #afcb9b,
    0 -1px 0 #6b8659;
}
<div class="switch demo3">
  <input type="checkbox">
  <label><i></i>
  </label>
</div>

<div class="switch demo3">
  <input type="checkbox" checked>
  <label><i></i>
  </label>
</div>


@robertjdは同意し、これが単純な変換に必要な理由について混乱しました
Neil Chowdhury

@robertjdこれらはチェックボックスすらありません。彼らはトグルです。
TylerH

14

チェックボックスの外観はデフォルトで修正されているようです。しかし、Worthy7によって指摘されたように、これはCSS appearanceプロパティを使用して修正できます。チェックボックスを完全に空にするため、独自の外観を定義できます。これの良い点:既存のHTMLコードを使用できます。欠点:実験技術です。EdgeとIEはカスタムスタイルを使用しません。

必要なCSSスタイルは次のとおりです。

input[type=checkbox] {
    width: 14mm;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 14mm;
    border: 0.1mm solid black;
}

input[type=checkbox]:checked {
    background-color: lightblue;
}

input[type=checkbox]:checked:after {
    margin-left: 4.3mm;
    margin-top: -0.4mm;
    width: 3mm;
    height: 10mm;
    border: solid white;
    border-width: 0 2mm 2mm 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    display: inline-block;
}
<label><input type="checkbox"> Test</label>

スクリーンショット:

クロム: ここに画像の説明を入力してください

Firefox: ここに画像の説明を入力してください

縁: ここに画像の説明を入力してください

IE: ここに画像の説明を入力してください


8

私はほんの少し大きいチェックボックスを作ろうとしていて、37Signals Basecampのソースコードを見て次の解決策を見つけました-

フォントサイズを変更して、チェックボックスを少し大きくすることができます。

font-size: x-large;

次に、次のようにしてチェックボックスを適切に配置できます。

vertical-align: top;
margin-top: 3px; /* change to center it */

3
font-sizeは実際のチェックボックスのサイズにはまったく影響しないようです
Michael


6

この属性を使用して、Safariでチェックボックスを大きくすることができます(これは通常、通常のアプローチに耐性があります)。 -webkit-transform: scale(1.3, 1.3);

ソース


6

一部のユーザーが提案するように、最も簡単な解決策はチェックボックスのスタイルを変更することだと思います。以下のCSSは私にとってはうまくいき、数行のCSSを必要とし、OPの質問に答えます:

input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    vertical-align: middle;
    width: 14px; 
    height: 14px;
    font-size: 14px;
    background-color: #eee;
}

input[type=checkbox]:checked:after {
    position: relative;
    bottom: 3px;
    left: 1px;
    color: blue;
    content: "\2713"; /* check mark */
}

この投稿で述べたように、ズームプロパティはFirefoxでは機能しないようで、変換によって望ましくない効果が生じる可能性があります。

ChromeとFirefoxでテストされ、最新のすべてのブラウザで動作するはずです。必要に応じてプロパティ(色、サイズ、下、左など)を変更するだけです。それが役に立てば幸い!


5

私の理解では、これはクロスブラウザを行うことはまったく簡単ではありません。チェックボックスコントロールを操作する代わりに、画像、JavaScript、非表示の入力フィールドを使用して、常に独自の実装を構築できます。これはniceformsが何であるか(上記のStaicu lonutの回答から)に似ていると思いますが、実装するのは特に難しくありません。jQueryには、このカスタム動作も可能にするプラグインがあると思います(リンクを探して、見つけたらここに投稿します)。


3

このCSS専用ライブラリが非常に役立つことがわかりました:https : //lokesh-coder.github.io/pretty-checkbox/

または、@ Sharcouxが投稿したのと同じように、これと同じ基本的な概念で独自にロールすることもできます。基本的には:

  • 通常のチェックボックスを非表示にします(不透明度0で、どこに配置するか)。
  • CSSベースの偽のチェックボックスを追加する
  • input:checked~div labelチェックスタイルに使用
  • あなた<label>がクリックできることを確認してくださいfor=yourinputID

.pretty {
  position: relative;
  margin: 1em;
}
.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.pretty-inner {
  box-sizing: border-box;
  position: relative;
}
.pretty-inner label {
  position: initial;
  display: inline-block;
  font-weight: 400;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}
.pretty-inner label:after,
.pretty-inner label:before {
  content: '';
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
}
.pretty-inner label:before {
  border-color: #bdc3c7;
}
.pretty input:checked~.pretty-inner label:after {
  background-color: #00bb82;
  width: calc(1em - 6px);
  height: calc(1em - 6px);
  top: 4px;
  left: 4px;
}


/* Add checkmark character style */
.pretty input:checked~.pretty-inner.checkmark:after {
  content: '\2713';
  color: #fff;
  position: absolute;
  font-size: 0.65em;
  left: 6px;
  top: 3px;
}



body {
  font-size: 20px;
  font-family: sans-serif;
}
<div class="pretty">
	<input type="checkbox" id="demo" name="demo">
	<div class="pretty-inner"><label for="demo">I agree.</label></div>
</div>

<div class="pretty">
	<input type="checkbox" id="demo" name="demo">
	<div class="pretty-inner checkmark"><label for="demo">Please check the box.</label></div>
</div>


3

問題は、Firefoxが幅と高さをリッスンしないことです。それを無効にしてください。

input[type=checkbox] {
    width: 25px;
    height: 25px;
    -moz-appearance: none;
}
<label><input type="checkbox"> Test</label>


3

他の答えはピクセル化されたチェックボックスを示しましたが、私は美しいものを望んでいました。結果は次のようになります。 チェックボックスのプレビュー

このバージョンはもっと複雑ですが、試してみる価値はあると思います。

.checkbox-list__item {
  position: relative;
  padding: 10px 0;
  display: block;
  cursor: pointer;
  margin: 0 0 0 34px;
  border-bottom: 1px solid #b4bcc2;
}
.checkbox-list__item:last-of-type {
  border-bottom: 0;
}

.checkbox-list__check {
  width: 18px;
  height: 18px;
  border: 3px solid #b4bcc2;
  position: absolute;
  left: -34px;
  top: 50%;
  margin-top: -12px;
  transition: border .3s ease;
  border-radius: 5px;
}
.checkbox-list__check:before {
  position: absolute;
  display: block;
  width: 18px;
  height: 22px;
  top: -2px;
  left: 0px;
  padding-left: 2px;
  background-color: transparent;
  transition: background-color .3s ease;
  content: '\2713';
  font-family: initial;
  font-size: 19px;
  color: white;
}

input[type="checkbox"]:checked ~ .checkbox-list__check {
  border-color: #5bc0de;
}
input[type="checkbox"]:checked ~ .checkbox-list__check:before {
  background-color: #5bc0de;
}
<label class="checkbox-list__item">
  <input class="checkbox_buttons" type="checkbox" checked="checked" style="display: none;">
  <div class="checkbox-list__check"></div>
</label>

JSFiddle:https ://jsfiddle.net/asbd4hpr/


0

以下のコードで高さと幅を変更できます

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius:5px;
    border:1px solid #ff7e02;
}
<div class="check">

     <label class="container1">Architecture/Landscape
										  

    <input type="checkbox" checked="checked">
										  

    <span class="checkmark"></span>
								 

	</label>
</div>

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.