프론트엔드-코드/JQuery

css()

sdafdq 2023. 7. 25. 15:28
  $('div').eq(0).css({
    padding: '10px',
    textAlign: 'center'
  });

 

 

  $('div').css('width',function(index){
    return (index + 1)*(100+100);
  });

이거 div가 여러개라서 반복문처럼 돌아감.

'프론트엔드-코드 > JQuery' 카테고리의 다른 글

태그삽입  (0) 2023.07.26
offset(), position()  (0) 2023.07.25
prop()  (0) 2023.07.25
attr  (0) 2023.07.25
html()  (0) 2023.07.24