对div使用伪类:last-child,希望讲c++的文字变成红色,但是失败了,记录一下以后解决


原来是谷歌浏览器的问题,换成edge就可以了,具体原因还是不知道,不确定是不是兼容问题


对div使用伪类:last-child,希望讲c++的文字变成红色,但是失败了,记录一下以后解决

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>选择器练习6</title>
    <style>


        div p:last-child,div:last-child{
            color: red;
        }

        div:last-child{
            color: red;
        }
    </style>
</head>
<body>
    <div>IOS</div>
    <div>JAVA</div>
    <div>JAVASCRIPT
        <p>HTML</p>
        <p>CSS</p>
        <p>JS</p>
    </div>
    <div> C++ </div>
</body>
</html>

原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/272806.html

(0)
上一篇 2022年7月9日
下一篇 2022年7月9日

相关推荐

发表回复

登录后才能评论