css不适用于div

时间:2018-06-19 10:30:01

标签: html css

我正在尝试将css应用于我的div(questionFrame)我正在试图为什么它不起作用?请参阅片段。有人可以帮忙吗?

userid
#questionFrame {
  border: 5px;
  border-width: 5px;
  border-color: black;
}

5 个答案:

答案 0 :(得分:3)

问题是你没有指定border style(例如" solid")。您可以单独执行以下操作:

#questionFrame {
  border: solid;
  border-width: 5px;
  border-color: black;
}

或者在一个声明中:

#questionFrame {
  border: 5px solid black;
}

我会推荐后者。

答案 1 :(得分:2)

#questionFrame{
  border: 5px solid black;
}
   <div id="questionFrame" >
   <span style="color:#0091ea"><p id="date">Date Created</p></span>
   <div id="userQuestions"></div>
   <center><div class="grid-container4">
  <a class="waves-effect waves-light btn #00e676 green accent-3" style="width:50%" onclick="grabData()">Proceed</a>
  <a class="waves-effect waves-light btn #ef5350 red lighten-1 " style="width:50%">Cancel</a>
  </div></center>
   </div>


或者作为你的代码:

border: solid;// not 5px
border-width: 5px;
border-color: black;

答案 2 :(得分:2)

您没有为border:5px solid;border-style:solid;

等边框设置任何样式

您可以在此处详细了解边框样式:https://www.w3schools.com/css/css_border.asp

答案 3 :(得分:1)

试试这个

#questionFrame{
border:5px solid #000;
}

或者您可以像这样设计

border: solid;
border-width: 5px;
border-color: black;

答案 4 :(得分:-3)

你有链接吗?使用

using (SqlCommand command = new SqlCommand("sp_Count", conn))
{

    foreach (TextBox textBox in placehldr1.Controls.OfType<TextBox>())
    {

        count += 1;

        command.CommandType = CommandType.StoredProcedure;
        string invoice = textBox.Text.TrimEnd();
        string parameter = string.Format("@invoice{0}", count);

        command.Parameters.AddWithValue(parameter, invoice);
        int invoiceCount = (int)command.ExecuteScalar();

        if (invoiceCount > 0)
        {

            lblError.Text = "Invoice number already exist";
            return;
        }
        command.Parameters.Clear();
    }

在HTML的头部