如果我想让我的网站为所有浏览器工作,我需要注意什么? 我将以下文件包含在我的.html中,但是firefox没有显示我的导航权限,而在资源管理器中,我的叠加层也是一个部分也不对。
#include <fstream>
#include <iostream>
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filtering_streambuf.hpp>
#include <boost/iostreams/copy.hpp>
#include <boost/iostreams/filter/gzip.hpp>
namespace bo = boost::iostreams;
int main()
{
{
std::ofstream ofile("hello.gz", std::ios_base::out | std::ios_base::binary);
bo::filtering_ostream out;
out.push(bo::gzip_compressor());
out.push(ofile);
out << "This is a gz file\n";
}
{
std::ifstream ifile("hello.gz", std::ios_base::in | std::ios_base::binary);
bo::filtering_streambuf<bo::input> in;
in.push(bo::gzip_decompressor());
in.push(ifile);
boost::iostreams::copy(in, std::cout);
}
}
我发现我的探险家是第11版,但我没有找到任何帮助。
我可以做些什么来包含我的网站Mozilla firefox和资源管理器是主要问题。