所以我在使用 PhantomJS 包时遇到了问题。这是一个简短的日志详细信息:
npm ERR! node v4.2.4
npm ERR! npm v2.14.12
npm ERR! code ELIFECYCLE
npm ERR! phantomjs@1.9.17 install: `node install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the phantomjs@1.9.17 install script 'node install.js'.
npm ERR! This is most likely a problem with the phantomjs package,
npm ERR! not with npm itself.
Run Code Online (Sandbox Code Playgroud)
遇到这个问题让我思考如何找出一个包是否与某个版本的节点兼容?我想知道是否有特定的 Node 资源/指南可以用来检查包兼容性,或者社区中的其他人使用什么流程来检查这些东西?
我知道在这个堆栈上已经发布了许多关于响应表的问题,但是相信我,我已经完成了所有这些问题并且没有找到问题的解决方案.或者也许我不确切地知道我在寻找什么,这就是为什么我不得不在这里问一个问题.
手头的问题非常简单.我正在制作一个wordpress网站.我并不完全喜欢主题定价表,所以我接受挑战来制作自己的主题.这是我需要此表的Wordpress页面的链接:http: //www.desklers.com/uae/undergraduate-packages
所以我的桌子很好,但我很难做出响应.以下是我在wordpress中使用我的视觉作曲家的原始html小部件中的html:
<style type="text/css">
/*General styles*/
/*Features table------------------------------------------------------------*/
@media screen and (max-width: 640px) {
.features-table {
overflow-x: auto;
display: block;
}
}
.features-table
{
font-family:'Open Sans';
margin: 0 auto;
border-collapse: separate;
border-spacing: 0;
text-shadow: 0 1px 0 #fff;
color: #2a2a2a;
background: #fafafa;
background-image: -moz-linear-gradient(top, #fff, #eaeaea, #fff); /* Firefox 3.6 */
background-image: -webkit-gradient(linear,center bottom,center top,from(#fff),color-stop(0.5, #eaeaea),to(#fff));
}
#check {
color: #26CCA4;
font-size:20px;
}
#cross {
color: #E74A4A;
font-size: 20px;
}
.features-table td
{
height: 50px;
line-height: …Run Code Online (Sandbox Code Playgroud)