在调整浏览器窗口大小后,我的超链接无法正常工作。
这是我做的:
我附有超链接的图片。对于样式,链接嵌套在div元素中:
<div class="row">
{% for n in search_results %}
<div class="col-xs-4 col-sm-4 col-md-2 voffset-15px">
<a href="{{ n.url }}" target="_blank">
{% autoescape off %}{{ n.get_image }}{% endautoescape %}
</a>
[here are some buttons with java scripts attached who are in front of the image]
</div>
{% endfor %}
</div>
该页面由django创建并托管在azure上。我使用bootstrap进行样式化,因此根据设备的大小,一行中将有3个或6个元素。
问题在于:
如果我使用django的开发服务器,它的工作完美无缺。链接适用于任何窗口大小。
在网络服务器上,它显示正常,但如果窗口是完整大小,则链接仅起作用。如果我将窗口调整为半屏,链接将停止工作...
我正在使用chrome。
非常感谢你的帮助!