回答編集履歴
1
追記
answer
CHANGED
@@ -6,4 +6,14 @@
|
|
6
6
|
const width = $('.one').css('width');
|
7
7
|
console.log(width);
|
8
8
|
```
|
9
|
-
でいいです。
|
9
|
+
でいいです。
|
10
|
+
|
11
|
+
---
|
12
|
+
|
13
|
+
どうしてもというなら
|
14
|
+
|
15
|
+
```jQuery
|
16
|
+
$('.one').css('min-width','unset');
|
17
|
+
const width = $('.one').width();
|
18
|
+
console.log(width);
|
19
|
+
```
|