0

ValidationSummary div (箇条書きリストの左側) 内に小さなアイコンを配置しようとしています。画像が表示されますが、使用すると繰り返します:

background:url(Images/exclamation.png);

私が言うと、画像はまったく表示されません:

background:url(Images/exclamation.png) no-repeat 12px 30px;

ここで何が欠けていますか。

CSS:

 .validationsummary
  {
   background:url(Images/exclamation.png) no-repeat 12px 30px;
   border:1px solid #b08b38;
   width:99%;    
  }
 .validationsummary ul
 {  
  color:#982b12;
  background-color:PeachPuff;
 }
.validationsummary ul li
 {
 padding:2px 0px 0px 15px; 
 font-size:12px;   
 }

ASPX:

<table width="100%">
 <tr>
  <td width="100%">
   <asp:ValidationSummary ID="vs" runat="server" CssClass="validationsummary" 
    DisplayMode="BulletList" />
  </td>
 </tr>
</table>

<table width="100%" cellspacing="10px">        
 <tr>
  <td width="11%" align="left">
   * Surname
  </td>
  <td width="18%" align="left">
   <asp:TextBox ID="txtSurname" runat="server" Width="93%"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"  
     ControlToValidate="txtSurname" SetFocusOnError="true" Text="*" ForeColor="Red"  
     Display="Dynamic" ErrorMessage="Surname Is Required"></asp:RequiredFieldValidator>
  </td>
 </tr>
</table>
4

4 に答える 4

0
.validationsummary
{
    background-image: url('Images/exclamation.png);
    background-repeat: no-repeat;
    background-position: left top; 
    background-size: 16px;
    padding-left: 20px; /* Depends on the size of the image - 16px + 4px actual padding to indent the text to the right of the image */
}
于 2014-04-09T09:20:22.853 に答える
0

また、背景画像の高さを定義します

.validationsummary
  {
   background:url(Images/exclamation.png) no-repeat 12px 30px;
   border:1px solid #b08b38;
   width:99%;   

    height: 200px; /* change it with your requirement */


  }
于 2013-08-19T10:06:21.757 に答える
0

background-image:url('Images/exclamation.png');

background-repeat-x: 繰り返しなし;

background-repeat-y: 繰り返しなし;

于 2013-08-19T10:03:29.450 に答える