如何选择div的滚动条?

时间:2016-06-07 21:12:44

标签: html css

我知道如何使用CSS等webkit滚动条代码更改整个页面的滚动条样式。

但是,我如何只想在div(而不是浏览器的div)中定位滚动条。如何在不使用JavaScript或jQuery的情况下实现此目的?

感谢您的时间。

2 个答案:

答案 0 :(得分:0)

试试这个

protected void BtnCreate(object sender, EventArgs e)
    {
      SqlConnection connection = new SqlConnection(connectionString);
      //id to new person
      int id = 0;
      //command
      string command = "INSERT INTO [Person] ([personID], [personName]) VALUES (@id, @name)";

      SqlCommand cmd = new SqlCommand(command, connection);
      cmd.Parameters.AddWithValue("@id", id++);//id increase
      cmd.Parameters.AddWithValue("@name", name.Text);
      connection.Open();
      cmd.ExecuteNonQuery();
      connection.Close();
    }

也可以使用前缀。

.class::scrollbar

答案 1 :(得分:0)

如果我理解正确,只需在所需的div上使用overflow:hidden;overflow-y:hidden;

div{box-sizing:border-box;}
#red{padding:5px;width:100%;height:1500px;background:red;}
#green{width:60%;height:900px;background:palegreen;overflow-y:hidden;}
<div id="red">
  <div id="green">
  </div>
</div>