Disable line breaks using CSS
问题 I have a canvas element inside a div element. The canvas size can change, and I want it vertical centered. I'm using this CSS approach: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Vertical Centering</title> <style> html, body{ height:100%; width:100%; margin:0; padding:0; } #container{ width:100%; height:100%; text-align:center; font-size:0; background:#aae; } #container:before{ content:''; display:inline-block; height:100%; vertical-align:middle; } canvas{ width