CSS - DIV / TD內部將圖片完全置中 2017-01-10
DIV的方式為(當尺寸未知時)
CSS的部分為:
.divstyle{width:120px; height:120px; line-height:120px; text-align:center;}
.imgstyle{max-width:120px; max-height:120px; width:auto; height:auto; vertical-align:middle;}
Table內TD的方式為
.tdstyle{display: table-cell; text-align: center; vertical-align: middle;}
以上的方式是使用於未知的td尺寸,讓圖片可自動置中