0

長いテキスト (約 5 ~ 6 行) のチェックボックスがあります。テキストが折り返されたときに、テキストをインデントして適切に配置しようとしています。私の現在のコードは現在 IE で動作しますが、Chrome、Safari、FireFox では、テキストはチェックボックスとは別の行にあります。ここで私が間違っている可能性があることを誰かが知っていますか、またはこれを達成する他の方法がありますか? 事前に助けてくれてありがとう!

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Info.ascx.cs"
Inherits="Project.Info" %>
<style type="text/css">
.CkbxFormat input
{
    float: left;
}
.CkbxFormat label
{
    display: inline-block;
}
</style>
<div style="margin-top: 10px; margin-left: 50px;">
<asp:Table ID="Table1" runat="server" Width="700px" CellSpacing="2" CellPadding="5"
    Style="border: Solid 1px green;">
    <asp:TableRow>
        <asp:TableCell>
            <asp:Label ID="Label1" runat="server" Text="Information"></asp:Label>
        </asp:TableCell></asp:TableRow>
    <asp:TableRow>
        <asp:TableCell>
            <asp:CheckBox ID="CkBxInfo" runat="server" Text="The accessor of a property contains the executable statements associated with getting (reading or computing) or setting (writing) the property. The accessor declarations can contain a get accessor, a set accessor, or both.  The body of the get accessor is similar to that of a method. It must return a value of the property type. The execution of the get accessor is equivalent to reading the value of the field. " CssClass="CkbxFormat"></asp:CheckBox>
        </asp:TableCell></asp:TableRow>
</asp:Table>
</div>
4

1 に答える 1