search

Home  >  Q&A  >  body text

CSS都要在head里添加<style></style>吗?

<style type="text/css"></style>这句代码中 type="text/css"表示什么意思?

烟雨江南烟雨江南2906 days ago1364

reply all(3)I'll reply

  • 数据分析师

    数据分析师2017-09-30 22:54:13

    Do I need to add <style></style> in the head for CSS? -PHP Chinese website Q&A-Does CSS have to add <style></style> in the head? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • PHP中文网

    PHP中文网2016-12-19 11:06:30

     type="text/css"没有任何用处,可以删掉的,这是历史遗留下来的。个人建议样式写在css样式表文件里,不要写在页面里。如:<link rel="stylesheet" href="/static/font-awesome/css/font-awesome.css?1.1.1"/>

    reply
    0
  • 迷茫

    迷茫2016-12-19 11:00:29

    它是CSS样式的标记。
    type->类型,这里是style的属性
    text/css ->文本/css,即css文本
    type="text/css"  表示的是浏览器的解释方式,如果不定义的话,有些CSS效果 浏览器解释得不一样。

    reply
    0
  • Cancelreply