我有這樣的事情在我的引導HTML(大概,它僅僅是一個向下的小三角形):響應三角?
<div class="col-md-10 col-md-offset-1">
<div class="triangle"></div>
</div>
而CSS是這樣的:
.triangle {
margin-top:-1px;
height: 60px;
border-style: solid;
border-width: 80px 778px 0 778px;
border-color: #332638 transparent transparent transparent;
}
但這不是響應。我的意思是在手機屏幕上,這個三角形仍然保持相同的大小(因爲它是像素,明顯)並保持水平滾動。
問題是:是否有可能使其響應?我知道答案很接近,但我仍然不是專家,只是想弄明白。
謝謝! :)
這是fiddle,順便說一下。
如果改變這些值,比方說,使用'視width' uniut而不是像素('vw'),應該工作。 – somethinghere