Membuat Ukuran kolom sama dan menyembunyikan isi yang melebihi ukuran kolom menggunakan css
<html>
<head>
<title>Auto colom</title>
<style>
.tbl {
table-layout: fixed;
border-collapse: collapse;
}
.tbl th {
padding: 3px 10px;
text-align: left;
border-bottom: 1px solid #ccc;
}
.tbl td {
border-bottom: 1px solid #ccc;
padding: 3px 10px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
</style>
</head>
<body>
<table width="460"...
Langganan:
Postingan (Atom)