我试图使我的 <hr />(hr)元素变粉红色,并使用以下css规则:
hr {height: 1px; color: #ed1d61;background-color: #ed1d61;
}
Run Code Online (Sandbox Code Playgroud)
但是仍然有一条黑线显示出来.
(以下是我正在制作的网站上的内容:http://www.yemon.org/,它是设计中唯一的水平线.
我如何让线条均匀粉红色?
我想允许所有IP地址之间145.050.039.008和145.050.039.017包含
例如(但这不起作用):
allow from 145.050.039.008 145.050.039.017
Run Code Online (Sandbox Code Playgroud)
要么:
allow from 145.050.039.008,145.050.039.017
Run Code Online (Sandbox Code Playgroud)
要么:
allow from 145.050.039.008/017
Run Code Online (Sandbox Code Playgroud)
?
谢谢你,杰尔玛
我正在尝试从Robin Nixon的"学习php MySQL和Javascript"中学习php.
在其中,他解释了下面的代码应该如何按字面输出(带有行结尾和空格).但它在一条线上输出所有东西.这是为什么?
$author = "Alfred E Newman";
echo <<<_END
This is a headline
This is the first line
This is the second
- Written by $author.
_END;
Run Code Online (Sandbox Code Playgroud)