标签: stylesheet

使用 MIME 类型 text/html 传输的样式表

正如您通过以下消息已经了解我的问题一样

Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://localhost/EcoVis/user/css/style.css". login:5
Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://localhost/EcoVis/user/css/navigation.css".
Run Code Online (Sandbox Code Playgroud)

我在 Win7 64 位上使用 xampp。

使用以下 MVC 构建应用程序。我没有使用任何框架,只是从头开始构建以获得更好的理解。Apache 重写已启用,并且正在使用 .htaccess,以便将条目仅限于 index.php。

##  Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#Folder indexing
Options -Indexes

#  mod_rewrite in use

RewriteEngine On

########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the …
Run Code Online (Sandbox Code Playgroud)

php apache stylesheet

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

Change color of Scrollbar in all browsers

I want to change color of scroll bar in all browser. My below style is not working in Mozila so please help me how to change color of the scroll bar in all browsers.

#boxes-list::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

#boxes-list::-webkit-scrollbar
{
    width: 12px;
    background-color: #F5F5F5!important;
}

#boxes-list::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3)!important;
    background-color: #FFCC00!important;
}
Run Code Online (Sandbox Code Playgroud)

html css stylesheet

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

替换 Javascript 中的 Head 样式表路径

我有以下 HEAD 标签

<head>
    <title>Test</title>
    <link id="css1" href="demo.css" rel="stylesheet" type="text/css">
</head>
Run Code Online (Sandbox Code Playgroud)

我希望能够在 Javascript 中以某种方式实现

document.head.children["css1"].href = "demo2.css";
Run Code Online (Sandbox Code Playgroud)

任何想法,我希望能够通过 id 进行更改,因为头部可能有更多标签

html javascript css stylesheet

2
推荐指数
1
解决办法
1073
查看次数

StyleSheet - 在 React Native 中扩展样式值

存在某种方法可以做这样的事情吗?

const styles = StyleSheet.create({
  content: {
    alignItems: 'center',
    flex: 1,
    justifyContent: 'center'
  },
  mainColor: { color: '#FFFFFF' },
  usernameIcon: {
    {this.styles.mainColor} // <-- How import the style, instead does write the code - color: '#FFFFFF'?
  },
  usernameItem: {
    backgroundColor: '#FF8484',
    borderColor: '#FFFFFF',
    paddingTop: 7
  },
});
Run Code Online (Sandbox Code Playgroud)

在我的组件中添加许多类,这非常冗长,我可能会做类似上面代码的事情。

css stylesheet react-native

2
推荐指数
1
解决办法
5382
查看次数

svg 外部样式表不起作用

我是新的 svg 学习者,并尝试使用外部样式表为 svg 文件设置动画,但未能为我的对象“立方体”设置样式。

[index.html 文件]

      <head>
        <link rel="stylesheet" type="text/css" href="cube.css">
      </head>
      <body>
        <img src="cube-motion.svg" height="350px" />
        <div class="logo">
          <h1>SVG Cube Animation</h>
        </div>
Run Code Online (Sandbox Code Playgroud)

[cube-motion.svg 文件]

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="cube.css" ?>

<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">

<g>
    <polygon id="l1" class="st0" points="105.3,92.7 86.3,103.3 67.3,92.9 67.1,71.9 86,61.2 105.1,71.6   "/>
    <polyline id="l2" class="st1" points="67.1,71.9 86.2,82.5 86.3,103.3 67.1,93.1 66.9,71.9    "/>

    <animateTransform
        attributeName="transform"
        type="translate"
        from="0 0"
        to="0 75"
        begin="0s"
        dur="3s"
        repeatCount="indefinite" …
Run Code Online (Sandbox Code Playgroud)

html svg external stylesheet

2
推荐指数
1
解决办法
2476
查看次数

混合内容 - 不安全的样式表

在浏览器中,我收到以下错误:混合内容:“ https://www.website.com/ ”上的页面已通过 HTTPS 加载,但请求了不安全的样式表“ http://fonts.googleapis.com/css” ?family=Play:400,700 '。此请求已被阻止;内容必须通过 HTTPS 提供。

我找到了代码中调用样式表的位置,并用https更改了地址:

<link href="http://fonts.googleapis.com/css?family=Play" rel="stylesheet" type="text/css" />
Run Code Online (Sandbox Code Playgroud)

但没有成功,错误仍然存​​在。

任何帮助或建议?

谢谢

css ssl stylesheet

2
推荐指数
1
解决办法
8122
查看次数

如何在 QLineEdit 和 QPushButton 中仅设置边框一侧的样式表?

我尝试手动创建组合框。因此,行编辑应与(下拉)按钮结合使用。因此我想隐藏行编辑的右边框和按钮的左边框。

我尝试过这个:

myLineEdit->setStyleSheet("QLineEdit{border-right: none;}");
myPushButton->setStyleSheet("QPushButton{border-left:none;}");
Run Code Online (Sandbox Code Playgroud)

我也尝试过:

myLineEdit->setStyleSheet("QLineEdit{border: 1px 1px 0px 1px;}");
Run Code Online (Sandbox Code Playgroud)

但两者都不起作用。我哪里错了?

css stylesheet qlineedit qpushbutton

2
推荐指数
1
解决办法
9678
查看次数

如何在react-native中组合多个内联样式对象和内联css?

如何在react-native中组合多个内联样式对象和内联css?

它有 3 个样式对象 TimelineGreenColor、TimelineLeftBorder、TimelineLeftLine 用于视图 div

  const stylesB = StyleSheet.create( {
     TimelineGreenColor:
     {
       backgroundColor: "green",
     },
     TimelineLeftBorder:
     {
       position: 'absolute',
       width: 4,
       backgroundColor: "green",
       height: '100%',
       left: 4,
       top: 15,
     },
     TimelineLeftCircle:
     {
       position: 'absolute',
       width: 12,
       height: 12,
       backgroundColor: "green",
       top: 12,
       borderRadius: 50,
       left: 0,
       /*boxShadow: "0px 0px 10px -2px black",*/
     },
     TimelineLeftLine:
     {
       position: 'absolute',
       width: 15,
       height: 3,
       backgroundColor: "green",
       top: 16,
       left: 5,
   }

   <View style={how to write styles in react-native ??????????}></View>
Run Code Online (Sandbox Code Playgroud)

css android styles stylesheet react-native

2
推荐指数
1
解决办法
3671
查看次数

如何在原生样式中计算()高度

有一个灰色方块,
用于放置 4 个小方块。有一个黑色方块,在黑色方块的每边中心将有 4 个小方块。
对于普通网络,我可以通过计算宽度来完成
但是我应该如何在 react native 中执行它,其中 calc(100% - 20) 在那里不起作用

请检查codepen中的代码:Codepen

索引.html

<!DOCTYPE html>

<head>
    <title>squares in square</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <div class='container'>
        <div class='invisiblesquare'>
            <div class='bigsquare'></div>
            <div class='col1'>
                <div class="smallsquare"></div>
            </div>
            <div class='col2'>
                <div class="smallsquare"></div>
                <div class="smallsquare"></div>
            </div>
            <div class='col3'>
                <div class="smallsquare"></div>
            </div>
        </div>
    </div>
    </div>


</body>

</html>
Run Code Online (Sandbox Code Playgroud)

样式文件

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;

}
.invisiblesquare{
    position: relative;
    height: 20%;
    width:20%;
    border: 1px …
Run Code Online (Sandbox Code Playgroud)

css styles stylesheet calc react-native

2
推荐指数
1
解决办法
5015
查看次数

使用样式标签进行样式设置是否正确?

我的意思是,我在 w3schools 的某个地方看到使用样式标签并不“正确”

并且样式只需要在 CSS 中

我问这个是因为如果我用我的页面(HTML)发送电子邮件,那么样式表不包括在内,所以我需要样式标签,不是吗?

这对我很重要,因为我对这个世界很陌生,所以我想以正确的方法练习

html css stylesheet

2
推荐指数
1
解决办法
308
查看次数

标签 统计

stylesheet ×10

css ×8

html ×4

react-native ×3

styles ×2

android ×1

apache ×1

calc ×1

external ×1

javascript ×1

php ×1

qlineedit ×1

qpushbutton ×1

ssl ×1

svg ×1