Completed
Last Updated: 11 Jun 2021 19:01 by ADMIN
ADMIN
Joana
Created on: 24 Jan 2017 08:24
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Extra space in a table cell containing block element in Chrome
http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

<table>
    <tbody>
        <tr>
            <td>test1</td>
            <td>
            <p>test2</p>
            </td>
        </tr>
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
        </tr>
    </tbody>
</table>

Expected: https://www.screencast.com/t/ttBoNadV

Actual: https://www.screencast.com/t/0rovtQC8OW
1 comment
ADMIN
Rumen
Posted on: 11 Jun 2021 19:01

Can be configured easily with the following CSS class:

        <style>
            table p { margin: 0; }
        </style>