본문 바로가기
CSS

background color가 프린트할 때 종이에 안나올 때

by jennyiscoding 2024. 7. 2.

css 로 할 경우 


.scheduleTable-cell {
border: 1px solid black;
padding: 2px;
min-width: 1.5rem;
text-align: center;
-webkit-print-color-adjust: true;
}

 

inline으로 

					<td key={day} style={ choiceArray.includes(day) ? {border: '1px solid black', padding: '2px', minWidth: '1.5rem', textAlign: 'center'} : {backgroundColor: '#a3cf9b', border: '1px solid black', padding: '2px', minWidth: '1.5rem', textAlign: 'center', WebkitPrintColorAdjust: 'exact'}}></td>