VScodeを使用していて、コメントアウトは緑色になるはずなのですが、スリックサイトのものを貼り付けると
コメントアウトが白色に変わります。
どうしてでしょうか?
html
1<script type="text/javascript"> 2 3 $(function() { 4$('.center').slick({ 5 centerMode: true, 6 centerPadding: '60px', 7 slidesToShow: 3, 8 responsive: [ 9 { 10 breakpoint: 768, 11 settings: { 12 arrows: false, 13 centerMode: true, 14 centerPadding: '40px', 15 slidesToShow: 3 16 } 17 }, 18 { 19 breakpoint: 480, 20 settings: { 21 arrows: false, 22 centerMode: true, 23 centerPadding: '40px', 24 slidesToShow: 1 25 } 26 } 27 ] 28}); 29</script> 30
回答1件
あなたの回答
tips
プレビュー