質問編集履歴
2
bootstrap使用の旨を記載
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
下記の設定でテキストボックスをフォーカスした際に表示される青枠線を消すことが出来ません。どのように致せばよいでしょうか?
|
2
2
|
|
3
3
|
```
|
4
|
+
/* bootstrap使用 */
|
5
|
+
|
4
6
|
<input type="text" class="form-control" id="test1">
|
5
7
|
#test1{
|
6
8
|
outline:0;
|
7
9
|
}
|
8
|
-
#test1:focus{
|
10
|
+
#test1:focus{ /* focasとなっていたのでfocusに */
|
9
11
|
outline:0;
|
10
12
|
}
|
11
13
|
```
|
1
focas==>focus
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
#test1{
|
6
6
|
outline:0;
|
7
7
|
}
|
8
|
-
#test1:
|
8
|
+
#test1:focus{
|
9
9
|
outline:0;
|
10
10
|
}
|
11
11
|
```
|