6
내용에 셀 너비 맞추기
다음 마크 업이 주어지면 CSS를 사용하여 하나의 셀 (열의 모든 셀)을 확장하지 않고 내용의 너비에 맞출 수 있습니까 (기본 동작)? <style type="text/css"> td.block { border: 1px solid black; } </style> <table style="width: 100%;"> <tr> <td class="block">this should stretch</td> <td class="block">this should stretch</td> <td class="block">this should be the content width</td> </tr> …
265
html
css
html-table