添加<style>使PyCharm停止自动完成css

时间:2016-11-12 19:06:31

标签: css django intellij-idea autocomplete pycharm

我的Django项目中的 PyCharm 自动完成有问题。我添加了&lt; style&gt; ...&lt; / style&gt; 标记到页面的 head 。当我这样做时, PyCharm 停止在此文件中自动填充css - 例如来自Bootstrap等的 col-lg ...

&#xA;&#xA ;

如果我对标记进行注释或将其移动到 bootstrap.css 的底部,则自动完成功能正常。

&#xA;&#xA;

是否有原因或它是一个错误?

&#xA;&#xA;

这是头脑:

&#xA;&#xA;
  {%extends'base.html'%}&# xA; {%load static%}&#xA; {%load crispy_forms_tags%}&#xA; {%block head%}&#xA; &lt; script src =“{%static”js / scripts / newOrder.js“%}”&gt;&lt; / script&gt;&#xA; &lt; script src =“{%static”chosen_v1.6.2 / chosen.jquery.min.js“%}”&gt;&lt; / script&gt;&#xA; &lt; script src =“{%static”js / scripts / newOrder.js“%}”&gt;&lt; / script&gt;&#xA; &lt; link href =“{%static”chosen_v1.6.2 / chosen.min.css“%}”rel =“stylesheet”&gt;&#xA; &lt; link href =“{%static”popselect / css / jquery.popSelect.css“%}”rel =“stylesheet”&gt;&#xA; &lt; script src =“{%static”popselect / jquery.popSelect.min.js“%}”&gt;&lt; / script&gt;&#xA;&#xA; &LT;风格&GT; {#这是标签#}&#xA; / *要求避免跳跃* /&#xA; .scrollfollowwrapper {&#xA; position:absolute;&#xA;宽度:350px;&#xA;&#xA; }&#XA;&#XA; .scrollfollow {&#xA; position:absolute;&#xA;顶部:0;&#xA;&#xA; }&#XA;&#XA; .scrollfollow.fixed {&#xA;位置:固定;&#xA;顶部:12%;&#xA;宽度:332px;&#xA; }&#XA;&#XA; &LT; /风格&GT;&#XA;&#XA; &LT;脚本&GT;&#XA; $(document).ready(function(){&#xA; $(“#id_target_languages”)。popSelect({&#xA; showTitle:false,&#xA; placeholderText:'Click to Add More',&#xA ; position:“bottom”,&#xA; width:500&#xA;});&#xA;})&#xA; &LT; /脚本&GT;&#XA;&#XA; &LT;脚本&GT;&#XA; var acc = document.getElementsByClassName(“accordion”);&#xA; var i;&#xA;&#xA; for(i = 0; i&lt; acc.length; i ++){&#xA; acc [i] .onclick = function(){&#xA; this.classList.toggle( “活性”);&#XA; this.nextElementSibling.classList.toggle( “节目”);&#XA; }&#XA; }&#XA;&#XA; &LT; /脚本&GT;&#XA;&#XA; &LT;脚本&GT;&#XA; $(document).ready(function(){&#xA; var top = $('。scrollfollow')。offset()。top  -  parseFloat($('。scrollfollow')。css('marginTop')。replace (/ auto /,0)) -  75;&#xA; $(窗口).scroll(函数(事件){&#xA; //滚动的y位置是&#xA; var y = $(这个).scrollTop();&#xA;&#xA; //是否位于表格&#xA; if(y&gt; = top){&#xA; //如果是这样,广告固定类&#xA; $ ('.scrollfollow')。addClass('fixed');&#xA;} else {&#xA; //否则删除它&#xA; $('。scrollfollow')。removeClass('fixed');&# xA;}&#xA;});&#xA;});&#xA;&#xA; &lt; / script&gt;&#xA;&#xA; {%endblock%}&#xA;&#xA; {%block content%}&#xA; .... Body .. ...&#xA;  
&#XA;

0 个答案:

没有答案