A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

技术马

初级黑马

  • 黑马币:21

  • 帖子:8

  • 精华:0

[前端与移动开发] 技术贴

© 技术马 初级黑马   /  2019-10-14 23:00  /  725 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


来黑马我学到了很多东西,也再一次的感谢老王孜孜不倦的教导,和大家分享我学到的知识
       
                    /*鼠标划过 盒子位置不变的写法
                    .box{
                                margin-bottom: 10px;
                                float: left;
                                margin-left: 10px;
                                height: 500px;
                                width: 200px;
                                background-color: red;
                                border: 1px solid transparent;
                        }
                        .box:hover{
                                border: 1px solid;
                        }*/
                       
                       
                        /*过渡*/
                        /*div{
                                width: 300px;
                                height: 100px;
                                background-color: red;
                                transition: all 1s;
                        }
                       
                       
                        div:hover{
                                width: 600px;
                        }*/
                       
                       
                       
                        /*获得焦点
                        input:focus{
                               
                        }*/
                       
                        /*让留言框无法拖动*/
                        /*textarea{
                                        resize: none;
                                        }*/

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马