回答編集履歴

1

追記

2019/09/08 11:58

投稿

kyoya0819
kyoya0819

スコア10429

test CHANGED
@@ -1,12 +1,18 @@
1
1
  jQuery使います。
2
2
 
3
- ```JavaScript
3
+ ```jQuery
4
4
 
5
5
  $(function() {
6
6
 
7
- var width = $('.header img').outerHeight() - 32;
7
+ var width1 = $('.header img').outerWidth() - 32;
8
8
 
9
+ var width2 = $('body').outerWidth();
10
+
11
+ var width3 = $('.header img').outerWidth();
12
+
9
- $('.main').css('width',width);
13
+ $('.main').css('width',width1);
14
+
15
+ $('.main').css('margin-left',(width2-width3)/2+32);
10
16
 
11
17
  });
12
18