JavaWeb—CSS伪元素before和after

  代码展示: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>伪元素</title> <style> span::before { content: "<<"; color: lightblue; } span::after { content: ">>"; co
相关文章