小编lec*_*ine的帖子

在eclipse luna中安装新的jboss服务器

有谁知道如何在新的eclipse luna中安装jboss 4.2服务器?

当您尝试添加新服务器时,jboss选项不会出现.

我已经安装了jboss工具,然后jboss AS选项可用,但我只想要jboss.

提前致谢!!

eclipse jboss

10
推荐指数
2
解决办法
3万
查看次数

什么是:: before或:: after表达式,为什么它显示在浏览器开发人员工具中?

我读过::before用于在你使用它的元素之前添加内容,例如

p::before { 
    content: "Read this: ";
}
Run Code Online (Sandbox Code Playgroud)

但是我见过的大部分时间(通过开发人员工具窥视网页)他们使用它们没有任何元素,例如

<div class="btn-toolbar" role="toolbar">
      ::before
      <div class="btn-group">
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-left"></span></button>
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-center"></span></button>
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-right"></span></button>
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-justify"></span></button>
      </div>
      ::after
    </div>
Run Code Online (Sandbox Code Playgroud)

令人惊讶的是,当您查看网页源代码时,这些::before::after元素不会显示.

为什么它们显示在开发人员工具中?

html css pseudo-element

3
推荐指数
1
解决办法
4308
查看次数

标签 统计

css ×1

eclipse ×1

html ×1

jboss ×1

pseudo-element ×1