请用CSS手写一个三角形
首先,需要把元素的宽度、高度设为0。然后设置边框样式。
width : 0 ; height : 0 ; border - top : 40px solid transparent ; border - left : 40px solid transparent ; border - right : 40px solid transparent ; border - bottom : 40px solid #ff0000;
看了两遍,慢慢消化吸收知识点
请写出以下代码执行输出:(构造函数、静态块执行顺序)
多线程中sleep()和wait()方法的区别
使用js实现数组的快速排序
ArrayList和LinkedList的区别,以及各自是怎么实现扩容的?
看了两遍,慢慢消化吸收知识点