在Wordpress中编辑CSS媒体查询

时间:2017-02-10 08:38:04

标签: php css wordpress function media-queries

这是functions.php文件的一部分

function javascript_file(){ 
    //this is the second style sheet for media query in wordpress
    wp_enqueue_style( 'container-css',  get_stylesheet_directory_uri() . '/container.css',array(),null, 'only screen and  (max-width:650px)' );

    wp_enqueue_style( 'container-css' );
}

//applying action on this function
add_action('init','javascript_file');

在此我将在WordPress中添加媒体查询的代码, 代码在浏览器中的开发人员工具中运行良好但是 当我把服务器上的代码开始搞砸了, 换句话说,不起作用。

我选择的尺寸是4英寸以上的屏幕。

1 个答案:

答案 0 :(得分:1)

您可以在外观中使用wordpress仪表板中的媒体查询 - >编辑。简单地复制并粘贴您的媒体问题。