Lufi adlı üyeden alıntı: mesajı görüntüle
<table class="table table-striped">
    <colgroup>
        <col>
        <col>
        <col>
        <col style="width: 60px;">
        <col style="width: 60px;">
    </colgroup>
    <thead>
        <tr>
            <th>id</th>
            <th>Türkçe</th>
            <th>İngilizce</th>
            <th>Kaydet</th>
            <th>Sil</th>
        </tr>
    </thead>
    <tbody>
        <?php foreach ($list as $item): ?>
            <tr>
                <td><?php echo htmlspecialchars($item['id']); ?></td>
                <td><div contenteditable="true" class="form-control editable-cell"><?php echo htmlspecialchars($item['tr']); ?></div></td>
                <td><div contenteditable="true" class="form-control editable-cell"><?php echo htmlspecialchars($item['en']); ?></div></td>
                <td><button class="btn btn-sm btn-success tahmin-up-button"><i class="fa fa-save" title="Kaydet" style="cursor:pointer"></i></button></td>
                <td><button class="btn btn-sm btn-danger tahmin-del-button"><i class="fa fa-trash" title="Sil" style="cursor:pointer"></i></button></td>
            </tr>
        <?php endforeach; ?>
    </tbody>
</table>

<style>
.editable-cell {
    min-height: 38px;
    max-height: 38px;
    overflow-y: auto;
    line-height: 1.5;
    padding: 6px 12px;
}
</style>
dener misin


Maalesef olmadı