我正在使用Google动态Feed控件整理一小部分RSS feed。

但是我只是想知道是否有任何文档可以解释如何设置样式。据我所知,它使用自己的预设样式,例如.gfc-title {} 、. gfc-resultsHeader {}这是我所知道的仅有的两个。

我只有四个提要,我真的想将它们组织成一个垂直的列,彼此相邻。而不是默认堆叠,而是彼此对齐。

抱歉,如果我在这里缺少明显的东西!

      <script type="text/javascript" src="https://www.google.com/jsapi"></script>
            <script type="text/javascript">
       google.load("feeds", "1");

       function OnLoad() {
       // Create a feed control
       var feedControl = new google.feeds.FeedControl();

      // Add two feeds.
      feedControl.addFeed("#", "Feed 1");
      feedControl.addFeed("#", "Feed 2");
      feedControl.addFeed("#", "Feed 3");
      feedControl.addFeed("#,  "Feed 4");


      // Draw it.
      feedControl.draw(document.getElementById("google_feeds"));
      }

      google.setOnLoadCallback(OnLoad);

最佳答案

您可以使用developer tools of your browser来查找Google提要控件的css类。我猜最重要的是gfc-resultsRoot,gfc-resultsHeader,gfc-title,gfc-results和gfc-result。

您可以通过向gfc-resultsRoot添加样式来获得所需的结果。也许是这样的:http://jsfiddle.net/qy81yn7f/1/

    .gfc-resultsRoot {
        width : 300px;
        float: left;
    }

07-28 08:01