Yapay zekayla ne denediysem bir türlü yapamadım istediğim şeyi.
Her bir satıra ait Türkçe ve İngilizce içerikler bazen bu şekilde kayma yapıyor. Ben ise tasarım yüksekliğinin aynı olmasını istiyorum.
Teşekkürler
<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"><?php echo htmlspecialchars($item['tr']); ?></div></td>
                            <td><div contenteditable="true" class="form-control"><?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>